sphinxext-mac/setup.py

32 lines
850 B
Python

#!/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",
]
)