add vcs-* fields to debian/control
[debian/digraphtools.git] / setup.py
1 from distutils.core import setup
2
3 setup(
4         name='digraphtools',
5         version='0.2.1',
6         author='David Basden',
7         author_email='davidb-python@rcpt.to',
8         packages=['digraphtools','digraphtools.test'],
9         url='https://github.com/dbasden/python-digraphtools',
10         description='Some tools for working with digraphs, partial orders and topological sorting with Python',
11         long_description=open('README.txt').read(),
12         platforms = ['any'],
13         classifiers = [
14                 'Intended Audience :: Developers',
15                 'Development Status :: 3 - Alpha',
16                 'License :: OSI Approved :: BSD License',
17                 'Operating System :: OS Independent',
18                 'Programming Language :: Python',
19         ],
20 )