Mostly integration test work:
[ric-plt/a1.git] / setup.py
index f9b3f11..db13d40 100644 (file)
--- 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.13.0",
+    version="2.1.3",
     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>=2.0.3,<3.0.0",
+    ],
     package_data={"a1": ["openapi.yaml"]},
 )