X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FIM.git;a=blobdiff_plain;f=setup.py;h=cda4c733c3ad39582e6d1ec916ab61535b2bdbd0;hp=84a8b0595d3e509fddf7944e0515bd4c8886efcd;hb=e6ba40aa913089e6fd057dce5ad34879ee4303ce;hpb=94b645e0104e813616289a24c2f53b32c6931b0c;ds=sidebyside diff --git a/setup.py b/setup.py index 84a8b05..cda4c73 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,13 @@ from setuptools import setup, find_packages setup( name='osm_im', - version_command=('git describe --tags --long --dirty', 'pep440-git'), + description='OSM Information Model', + long_description = open('README.rst').read(), + version_command=('git describe --tags --long --dirty --match v*', 'pep440-git-full'), author='Mike Marchetti', author_email='mmarchetti@sandvine.com', packages=find_packages(), include_package_data=True, - install_requires=[ - 'pyangbind' - ], setup_requires=['setuptools-version-command'], test_suite='nose.collector', )