| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 1 | from setuptools import setup, find_packages |
| 2 | |
| 3 | setup( |
| 4 | name='osm_im', |
| garciadeblas | 825b76d | 2017-08-30 15:03:32 +0200 | [diff] [blame] | 5 | description='OSM Information Model', |
| 6 | long_description = open('README.rst').read(), |
| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 7 | version_command=('git describe --tags --long --dirty', 'pep440-git'), |
| 8 | author='Mike Marchetti', |
| 9 | author_email='mmarchetti@sandvine.com', |
| 10 | packages=find_packages(), |
| 11 | include_package_data=True, |
| 12 | install_requires=[ |
| garciadeblas | de2939d | 2017-09-11 12:23:40 +0200 | [diff] [blame^] | 13 | 'pyangbind' |
| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 14 | ], |
| 15 | setup_requires=['setuptools-version-command'], |
| 16 | test_suite='nose.collector', |
| 17 | ) |