Initial version of the MAC Sphinx extension

This commit is contained in:
Jan Dittberner 2016-04-16 23:43:52 +02:00
commit 2e38c4ea2d
7 changed files with 729 additions and 0 deletions

31
setup.py Normal file
View file

@ -0,0 +1,31 @@
#!/usr/bin/env python3
from setuptools import setup, find_packages
from jandd.sphinxext.mac import __version__ as version
with open('README.rst') as readme:
description = readme.read() + "\n\n"
with open('COPYING') as license:
description += license.read()
setup(
author="Jan Dittberner",
author_email="jan@dittberner.info",
description=description,
name="jandd.sphinxext.mac",
namespace_packages=['jandd', 'jandd.sphinxext'],
packages=find_packages(),
version=version,
keywords="sphinx extension MAC",
license="GPLv3+",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Framework :: Sphinx :: Extension",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Internet",
]
)