https://github.com/xflr6/graphviz
Raw File
Tip revision: 5b14728f9c2e02d2b98ca8dff9e1a9d80ce4c364 authored by Sebastian Bank on 21 April 2014, 10:01:01 UTC
import 0.3.1 release
Tip revision: 5b14728
setup.py
# setup.py

from setuptools import setup
    
setup(
    name='graphviz',
    version='0.3.1',
    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=['graphviz'],
    platforms='any',
    long_description=open('README.rst').read(),
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'Intended Audience :: Science/Research',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Topic :: Scientific/Engineering :: Visualization',
        'Topic :: Software Development :: Libraries :: Python Modules',
    ],
)
back to top