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
|
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
sys.path.insert(0, 'src')
import nwdiag
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
]
test_requires = ['nose',
'pep8>=1.3',
'reportlab',
'docutils']
# only for Python2.6
if sys.version_info > (2, 6) and sys.version_info < (2, 7):
test_requires.append('unittest2')
setup(
name='nwdiag',
version=nwdiag.__version__,
description='nwdiag generates network-diagram image from text',
long_description=open("README.rst").read(),
classifiers=classifiers,
keywords=['diagram', 'generator'],
author='Takeshi Komiya',
author_email='i.tkomiya at gmail.com',
url='http://blockdiag.com/',
download_url='http://pypi.python.org/pypi/nwdiag',
license='Apache License 2.0',
py_modules=[
'nwdiag_sphinxhelper',
'rackdiag_sphinxhelper',
'packetdiag_sphinxhelper',
],
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={'': ['buildout.cfg']},
include_package_data=True,
install_requires=[
'setuptools',
'blockdiag>=1.5.0',
# -*- Extra requirements: -*-
],
extras_require=dict(
testing=test_requires,
pdf=[
'reportlab',
],
rst=[
'docutils',
],
),
test_suite='nose.collector',
tests_require=test_requires,
entry_points="""
[console_scripts]
nwdiag = nwdiag.command:main
rackdiag = rackdiag.command:main
packetdiag = packetdiag.command:main
[blockdiag_noderenderer]
_packet_node = packetdiag.noderenderers
""",
)
|