X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=setup.py;h=7b0684ae68e7242bd4f40e31952bc5ae5bc7f0dd;hb=702de8c5fb0d687a60696b0f7d042feb2f316c64;hp=66be986a3ea2c05c21b5fb95f69cd7143376187d;hpb=438a0a662e2e67af7f248f9715b54f92efc4a80c;p=ric-plt%2Fa1.git diff --git a/setup.py b/setup.py index 66be986..7b0684a 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # ================================================================================== -# Copyright (c) 2019 Nokia -# Copyright (c) 2018-2019 AT&T Intellectual Property. +# Copyright (c) 2019-2020 Nokia +# Copyright (c) 2018-2020 AT&T Intellectual Property. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,13 +18,13 @@ from setuptools import setup, find_packages setup( name="a1", - version="0.8.3", + version="2.2.0", packages=find_packages(exclude=["tests.*", "tests"]), author="Tommy Carpenter", description="RIC A1 Mediator for policy/intent changes", - url="", - entry_points={"console_scripts": ["run.py=a1.run:main"]}, + url="https://gerrit.o-ran-sc.org/r/admin/repos/ric-plt/a1", + 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>=0.10.0"], + install_requires=["requests", "Flask", "connexion[swagger-ui]", "gevent", "prometheus-client", "mdclogpy", "ricxappframe>=2.0.0,<3.0.0"], package_data={"a1": ["openapi.yaml"]}, )