ab4cd5ddf0
git-svn-id: http://pydot.googlecode.com/svn/trunk@2 06aa9b79-7134-0410-ae7e-c1cd3e483e87
24 lines
819 B
Python
24 lines
819 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
import pydot
|
|
|
|
setup( name = 'pydot',
|
|
version = pydot.__version__,
|
|
description = 'Python interface to Graphiz\'s Dot',
|
|
author = 'Ero Carrera',
|
|
author_email = 'ero@dkbza.org',
|
|
url = 'http://dkbza.org/pydot.html',
|
|
license = 'MIT',
|
|
platforms = ["any"],
|
|
classifiers = ['Development Status :: 5 - Production/Stable', \
|
|
'Intended Audience :: Science/Research', \
|
|
'License :: OSI Approved :: MIT License',\
|
|
'Natural Language :: English', \
|
|
'Operating System :: OS Independent', \
|
|
'Programming Language :: Python', \
|
|
'Topic :: Scientific/Engineering :: Visualization',\
|
|
'Topic :: Software Development :: Libraries :: Python Modules'],
|
|
long_description = "\n".join(pydot.__doc__.split('\n')),
|
|
py_modules = ['pydot', 'dot_parser'])
|