1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages, setup
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
]
def get_version():
"""Get version number of the package from version.py without importing core module."""
package_dir = os.path.abspath(os.path.dirname(__file__))
version_file = os.path.join(package_dir, 'src/nwdiag/__init__.py')
namespace = {}
with open(version_file, 'r') as f:
exec(f.read(), namespace)
return namespace['__version__']
setup(
name='nwdiag',
version=get_version(),
description='nwdiag generates network-diagram image from text',
long_description=open("README.rst").read(),
long_description_content_type='text/x-rst',
classifiers=classifiers,
keywords=['diagram', 'generator'],
author='Takeshi Komiya',
author_email='i.tkomiya@gmail.com',
url='http://blockdiag.com/',
download_url='http://pypi.python.org/pypi/nwdiag',
project_urls={
"Code": "https://github.com/blockdiag/nwdiag",
"Issue tracker": "https://github.com/blockdiag/nwdiag/issues",
},
license='Apache License 2.0',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={'': ['buildout.cfg']},
include_package_data=True,
python_requires=">=3.7",
install_requires=['blockdiag>=3.0.0'],
extras_require=dict(
testing=[
'nose',
'pep8>=1.3',
'flake8',
'flake8-coding',
'flake8-copyright',
'flake8-isort',
'reportlab',
'docutils'
],
pdf=[
'reportlab',
],
rst=[
'docutils',
],
),
test_suite='nose.collector',
entry_points="""
[console_scripts]
nwdiag = nwdiag.command:main
rackdiag = rackdiag.command:main
packetdiag = packetdiag.command:main
[blockdiag_noderenderer]
_packet_node = packetdiag.noderenderers
""",
)
|