2016-04-16 23:43:22 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
from jandd.sphinxext.ip 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.ip",
|
|
|
|
namespace_packages=['jandd', 'jandd.sphinxext'],
|
2016-04-25 00:50:48 +02:00
|
|
|
install_requires=['Sphinx>=1.4', 'ipcalc>=1.99'],
|
2016-04-16 23:43:22 +02:00
|
|
|
packages=find_packages(),
|
|
|
|
version=version,
|
|
|
|
keywords="sphinx extension IP",
|
|
|
|
license="GPLv3+",
|
|
|
|
classifiers=[
|
2016-04-25 00:50:48 +02:00
|
|
|
"Development Status :: 4 - Beta",
|
2016-04-16 23:43:22 +02:00
|
|
|
"Framework :: Sphinx :: Extension",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Topic :: Internet",
|
|
|
|
]
|
|
|
|
)
|