X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=setup.py;h=f458ef136313ebf721d08a14b4dad2771ee9f562;hb=b024d12884afe2ac7405fe7767f51e050a095151;hp=553dd19eca4997990b0517aa00a22ba64d3f15a7;hpb=81e3575a77366f30c2049f98c48a3087db0ea992;p=pti%2Fo2.git diff --git a/setup.py b/setup.py index 553dd19..f458ef1 100644 --- a/setup.py +++ b/setup.py @@ -1,17 +1,21 @@ -from setuptools import setup -from setuptools import find_packages - -setup( - name="o2imsdms", - version="1.0", - packages=find_packages(), - license="LICENSE", - description="Represent O2 IMS and O2 DMS", - install_requires=[ - 'httplib2', - # 'distributedcloud-client', - # 'cgtsclient', - 'babel', # Required by distributedcloud-client - 'PrettyTable<0.8,>=0.7.2', # Required by distributedcloud-client - ] -) +from setuptools import setup +from setuptools import find_packages + +setup( + name="o2imsdms", + version="1.0.0", + packages=find_packages(), + license="Apache-2.0", + author='Bin Yang', + author_email='bin.yang@windriver.com', + description="Represent StarlingX as an O-RAN O-Cloud by exposing O-RAN Compliant O2 IMS and O2 DMS Interfaces", + url='https://docs.o-ran-sc.org/projects/o-ran-sc-pti-o2/en/latest/index.html', + install_requires=[ + 'httplib2', + # 'distributedcloud-client', + # 'cgtsclient', + # 'fmclient', + 'babel', # Required by distributedcloud-client + 'PrettyTable<0.8,>=0.7.2', # Required by distributedcloud-client + ] +)