blob: bf1f71b8e6ed2883eeaaa7d307bc3f45cba8e315 [file] [log] [blame]
Mike Marchetti4c7e2372017-05-08 16:07:20 -04001from setuptools import setup, find_packages
Mike Marchetti81600192017-04-19 12:42:34 -04002
3setup(
4 name='osmclient',
Mike Marchettia8443a82018-08-14 09:16:33 -04005 version_command=('git describe --match v* --tags --long --dirty',
6 'pep440-git'),
Mike Marchetti81600192017-04-19 12:42:34 -04007 author='Mike Marchetti',
8 author_email='mmarchetti@sandvine.com',
9 packages=find_packages(),
10 include_package_data=True,
11 install_requires=[
garciadeblasf0c42472018-04-19 15:42:09 +020012 'Click', 'prettytable', 'pyyaml', 'pycurl', 'python-magic'
Mike Marchetti81600192017-04-19 12:42:34 -040013 ],
Mike Marchettieeb2c002017-05-25 11:34:25 -040014 setup_requires=['setuptools-version-command'],
Mike Marchetti952e2032017-05-09 13:02:32 -040015 test_suite='nose.collector',
Mike Marchetti81600192017-04-19 12:42:34 -040016 entry_points='''
17 [console_scripts]
18 osm=osmclient.scripts.osm:cli
19 ''',
20)