X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fbindings%2Frmr-python%2Fsetup.py;h=2ea41f6f111c1dc5fc2b6ce5051e84f736d969a6;hb=4ac73e3b9c0ff7aef80ad45f1bfead52bb2ffc99;hp=b15f15a865ed53523d150bcd17d3dc80516f4d52;hpb=46ae0f44cd0ea713601f16adc5ea709e607eb2e8;p=ric-plt%2Flib%2Frmr.git diff --git a/src/bindings/rmr-python/setup.py b/src/bindings/rmr-python/setup.py index b15f15a..2ea41f6 100644 --- a/src/bindings/rmr-python/setup.py +++ b/src/bindings/rmr-python/setup.py @@ -14,14 +14,39 @@ # See the License for the specific language governing permissions and # limitations under the License. # ================================================================================== +from os.path import dirname, abspath, join as path_join from setuptools import setup, find_packages +SETUP_DIR = abspath(dirname(__file__)) + + +def _long_descr(): + """Yields the content of documentation files for the long description""" + doc_path = path_join(SETUP_DIR, "README.rst") + with open(doc_path) as f: + return f.read() + + setup( name="rmr", - version="0.10.1", + version="0.10.5", packages=find_packages(), - author="Tommy Carpenter", + author="Tommy Carpenter, E. Scott Daniels", description="Python wrapper for RIC RMR", url="https://gerrit.o-ran-sc.org/r/admin/repos/ric-plt/lib/rmr", + classifiers=[ + "Development Status :: 4 - Beta", + "Intended Audience :: Telecommunications Industry", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "License :: OSI Approved :: Apache Software License", + "Operating System :: POSIX :: Linux", + "Topic :: Communications", + ], + python_requires=">=3.7", + keywords="RIC rmr", + license="Apache 2.0", + data_files=[("", ["LICENSE.txt"])], install_requires=[], + long_description=_long_descr(), )