Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | '''Setuptools params''' |
| 3 | |
| 4 | from setuptools import setup, find_packages |
| 5 | |
| 6 | modname = distname = 'oftest' |
| 7 | |
| 8 | setup( |
| 9 | name='oftest', |
| 10 | version='0.0.1', |
| 11 | description='An OpenFlow Testing Framework', |
| 12 | author='Dan Talayco/Tatsuya Yabe', |
| 13 | author_email='dtalayco@stanford.edu', |
| 14 | packages=find_packages(), |
| 15 | long_description="""\ |
| 16 | OpenFlow test framework package. |
| 17 | """, |
| 18 | classifiers=[ |
| 19 | "License :: OSI Approved :: GNU General Public License (GPL)", |
| 20 | "Programming Language :: Python", |
| 21 | "Development Status :: 4 - Beta", |
| 22 | "Intended Audience :: Developers", |
| 23 | "Topic :: Internet", |
| 24 | ], |
| 25 | keywords='networking protocol Internet OpenFlow validation', |
| 26 | license='unspecified', |
| 27 | install_requires=[ |
| 28 | 'setuptools', |
| 29 | 'doxypy', |
Dan Talayco | f3d64d6 | 2010-03-11 20:17:35 -0800 | [diff] [blame^] | 30 | 'pylint' |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 31 | ]) |