2016-04-16 23:43:22 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2021-01-02 06:20:53 +01:00
|
|
|
from setuptools import find_packages, setup
|
2016-04-16 23:43:22 +02:00
|
|
|
|
2021-01-02 06:20:53 +01:00
|
|
|
version = "0.3.1"
|
2016-04-16 23:43:22 +02:00
|
|
|
|
2021-01-02 06:20:53 +01:00
|
|
|
with open("README.rst") as readme:
|
2016-04-16 23:43:22 +02:00
|
|
|
description = readme.read() + "\n\n"
|
|
|
|
|
2021-01-02 06:20:53 +01:00
|
|
|
with open("CHANGES.rst") as changes:
|
2016-05-05 11:59:23 +02:00
|
|
|
description += changes.read()
|
|
|
|
|
2021-01-02 06:20:53 +01:00
|
|
|
requires = ["Sphinx>=3", "ipcalc>=1.99"]
|
2016-05-01 18:12:02 +02:00
|
|
|
|
2016-04-16 23:43:22 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
author="Jan Dittberner",
|
|
|
|
author_email="jan@dittberner.info",
|
2016-05-04 11:28:39 +02:00
|
|
|
description="IP address extension for Sphinx",
|
2016-05-02 21:33:10 +02:00
|
|
|
long_description=description,
|
2016-05-01 18:12:02 +02:00
|
|
|
include_package_data=True,
|
|
|
|
install_requires=requires,
|
|
|
|
keywords="sphinx extension IP",
|
|
|
|
license="GPLv3+",
|
2016-05-04 13:44:09 +02:00
|
|
|
url="https://pypi.python.org/pypi/jandd.sphinxext.ip",
|
2016-04-16 23:43:22 +02:00
|
|
|
name="jandd.sphinxext.ip",
|
2021-01-02 06:20:53 +01:00
|
|
|
namespace_packages=["jandd", "jandd.sphinxext"],
|
2016-04-16 23:43:22 +02:00
|
|
|
packages=find_packages(),
|
2021-01-02 06:20:53 +01:00
|
|
|
platforms="any",
|
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
|
|
|
)
|