sphinxext-ip/setup.py
Jan Dittberner 1aeb916058 Don't import jandd.sphinxext.ip in setup.py
This commit removes the import of jandd.sphinxext.ip in setup.py to
allow bootstrapping without installed requirements. A setup.cfg defining
options for egg_info has been added.
2016-05-01 17:23:55 +02:00

33 lines
860 B
Python

#!/usr/bin/env python3
from setuptools import setup, find_packages
version = '0.1.0'
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'],
install_requires=['Sphinx>=1.4', 'ipcalc>=1.99'],
packages=find_packages(),
version=version,
keywords="sphinx extension IP",
license="GPLv3+",
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Sphinx :: Extension",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Internet",
]
)