~openerp-groupes/openobject-server/6.0-fix-setup-windows

« back to all changes in this revision

Viewing changes to bin/addons/base/ir/workflow/pydot/setup.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-3f10ee12cea3c4c75cef44ab04ad33ef47432907
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
from distutils.core import setup
 
4
import pydot
 
5
 
 
6
setup(  name = 'pydot',
 
7
        version = pydot.__version__,
 
8
        description = 'Python interface to Graphiz\'s Dot',
 
9
        author = 'Ero Carrera',
 
10
        author_email = 'ero@dkbza.org',
 
11
        url = 'http://dkbza.org/pydot.html',
 
12
        license = 'MIT',
 
13
        platforms = ["any"],
 
14
        classifiers =   ['Development Status :: 5 - Production/Stable', \
 
15
                         'Intended Audience :: Science/Research',       \
 
16
                         'License :: OSI Approved :: MIT License',\
 
17
                         'Natural Language :: English',                 \
 
18
                         'Operating System :: OS Independent',          \
 
19
                         'Programming Language :: Python',              \
 
20
                         'Topic :: Scientific/Engineering :: Visualization',\
 
21
                         'Topic :: Software Development :: Libraries :: Python Modules'],
 
22
        long_description = "\n".join(pydot.__doc__.split('\n')),
 
23
        py_modules = ['pydot', 'dot_parser'])