X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=setup.py;h=7b0684ae68e7242bd4f40e31952bc5ae5bc7f0dd;hb=702de8c5fb0d687a60696b0f7d042feb2f316c64;hp=87ba3abf6c735bf182b152936bf4da91486d9b0e;hpb=45f8f98f0e344cc253d709df23bf27311adff0bb;p=ric-plt%2Fa1.git diff --git a/setup.py b/setup.py index 87ba3ab..7b0684a 100644 --- a/setup.py +++ b/setup.py @@ -18,22 +18,13 @@ from setuptools import setup, find_packages setup( name="a1", - version="2.1.4", + version="2.2.0", packages=find_packages(exclude=["tests.*", "tests"]), author="Tommy Carpenter", description="RIC A1 Mediator for policy/intent changes", url="https://gerrit.o-ran-sc.org/r/admin/repos/ric-plt/a1", - entry_points={"console_scripts": ["run.py=a1.run:main"]}, + entry_points={"console_scripts": ["run-a1=a1.run:main"]}, # we require jsonschema, should be in that list, but connexion already requires a specific version of it - install_requires=[ - "requests", - "Flask", - "connexion[swagger-ui]", - "gevent", - "rmr>=2.2.0", - "mdclogpy", - "ricxappframe>=0.2.0", - "ricsdl>=2.0.3,<3.0.0", - ], + install_requires=["requests", "Flask", "connexion[swagger-ui]", "gevent", "prometheus-client", "mdclogpy", "ricxappframe>=2.0.0,<3.0.0"], package_data={"a1": ["openapi.yaml"]}, )