Fixed indentation in grouping vm-flavor-name
[osm/IM.git] / setup.py
1 from setuptools import setup, find_packages
2
3 setup(
4 name='osm_im',
5 description='OSM Information Model',
6 long_description = open('README.rst').read(),
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=[
13 'pyangbind'
14 ],
15 setup_requires=['setuptools-version-command'],
16 test_suite='nose.collector',
17 )