2016-04-16 23:43:22 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2016-05-01 17:23:55 +02:00
|
|
|
version = '0.1.0'
|
2016-04-16 23:43:22 +02:00
|
|
|
|
|
|
|
with open('README.rst') as readme:
|
|
|
|
description = readme.read() + "\n\n"
|
|
|
|
|
|
|
|
with open('COPYING') as license:
|
|
|
|
description += license.read()
|
|
|
|
|
2016-05-01 18:12:02 +02:00
|
|
|
requires = ['Sphinx>=1.4', 'ipcalc>=1.99']
|
|
|
|
tests_requires = ['path.py>=8.2.1']
|
|
|
|
|
2016-04-16 23:43:22 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
author="Jan Dittberner",
|
|
|
|
author_email="jan@dittberner.info",
|
|
|
|
description=description,
|
2016-05-01 18:12:02 +02:00
|
|
|
include_package_data=True,
|
|
|
|
install_requires=requires,
|
|
|
|
keywords="sphinx extension IP",
|
|
|
|
license="GPLv3+",
|
2016-04-16 23:43:22 +02:00
|
|
|
name="jandd.sphinxext.ip",
|
|
|
|
namespace_packages=['jandd', 'jandd.sphinxext'],
|
|
|
|
packages=find_packages(),
|
2016-05-01 18:12:02 +02:00
|
|
|
platforms='any',
|
2016-05-02 21:24:49 +02:00
|
|
|
tests_requires=tests_requires,
|
2016-04-16 23:43:22 +02:00
|
|
|
version=version,
|
2016-05-01 18:12:02 +02:00
|
|
|
zip_safe=False,
|
2016-04-16 23:43:22 +02:00
|
|
|
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",
|
2016-05-01 18:12:02 +02:00
|
|
|
"Topic :: Documentation",
|
2016-04-16 23:43:22 +02:00
|
|
|
"Topic :: Internet",
|
2016-05-01 18:12:02 +02:00
|
|
|
],
|
2016-04-16 23:43:22 +02:00
|
|
|
)
|