X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=setup.py;h=9c6f0bc72fa8b6a504b545d722edbf0a688490bb;hb=ccb4a69e473cab6db7e8d52a04f9b4922528e24f;hp=e885438c44259f4b5c0464769ec25ac0408f5f69;hpb=40caa314d23122f0bd25c0e66b65d10303538164;p=ric-plt%2Fa1.git diff --git a/setup.py b/setup.py index e885438..9c6f0bc 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,22 @@ from setuptools import setup, find_packages setup( name="a1", - version="0.11.0", + version="2.1.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"]}, # 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.8"], + install_requires=[ + "requests", + "Flask", + "connexion[swagger-ui]", + "gevent", + "msgpack", + "rmr>=2.2.0", + "mdclogpy", + "ricsdl>=1.0.2,<2.0.0", + ], package_data={"a1": ["openapi.yaml"]}, )