https://github.com/xflr6/graphviz
Revision c0a52e51153b663a61c89668fc547631a8e2f80f authored by Sebastian Bank on 10 May 2015, 14:17:00 UTC, committed by Sebastian Bank on 10 May 2015, 14:17:00 UTC
1 parent 1f76644
Raw File
Tip revision: c0a52e51153b663a61c89668fc547631a8e2f80f authored by Sebastian Bank on 10 May 2015, 14:17:00 UTC
do 0.4.4 release
Tip revision: c0a52e5
setup.py
# setup.py

from setuptools import setup, find_packages

setup(
    name='graphviz',
    version='0.4.4',
    author='Sebastian Bank',
    author_email='sebastian.bank@uni-leipzig.de',
    description='Simple Python interface for Graphviz',
    keywords='graph visualization dot render',
    license='MIT',
    url='http://github.com/xflr6/graphviz',
    packages=find_packages(),
    extras_require={
        'test': ['nose', 'coverage', 'flake8', 'pep8-naming'],
        'dev': ['wheel'],
    },
    platforms='any',
    long_description=open('README.rst').read(),
    classifiers=[
        'Development Status :: 4 - Beta',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'Intended Audience :: Science/Research',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Topic :: Scientific/Engineering :: Visualization',
        'Topic :: Software Development :: Libraries :: Python Modules',
    ],
)
back to top