Redo release the 2.0.3 image
[pti/o2.git] / setup.py
1 from setuptools import setup
2 from setuptools import find_packages
3
4 setup(
5     name="o2imsdms",
6     version="1.0.0",
7     packages=find_packages(),
8     license="Apache-2.0",
9     author='Bin Yang',
10     author_email='bin.yang@windriver.com',
11     description="Represent StarlingX as an O-RAN O-Cloud by exposing O-RAN Compliant O2 IMS and O2 DMS Interfaces",
12     url='https://docs.o-ran-sc.org/projects/o-ran-sc-pti-o2/en/latest/index.html',
13     install_requires=[
14         'httplib2',
15         # 'distributedcloud-client',
16         # 'cgtsclient',
17         # 'fmclient',
18         'babel',  # Required by distributedcloud-client
19         'PrettyTable<0.8,>=0.7.2',  # Required by distributedcloud-client
20     ]
21 )