Feature 9015: use same names for quotas and roles
[osm/NBI.git] / setup.py
index 0f3c616..67c1740 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,23 @@
 #!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+# Copyright 2018 Telefonica S.A.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 import os
-from setuptools import setup
+from setuptools import setup, find_packages
 
 _name = "osm_nbi"
 # version is at first line of osm_nbi/html_public/version
@@ -25,23 +41,21 @@ setup(
     url='https://osm.etsi.org/gitweb/?p=osm/NBI.git;a=summary',
     license='Apache 2.0',
 
-    packages=[_name],
+    packages=find_packages(exclude=["temp", "local"]),
     include_package_data=True,
     # exclude_package_data={'': ['osm_nbi/local', 'temp']},
-    data_files=[('/etc/osm/', ['osm_nbi/nbi.cfg']),
-                ('/etc/systemd/system/', ['osm_nbi/osm-nbi.service']),
-                ],
-    dependency_links=[
-        "git+https://osm.etsi.org/gerrit/osm/common.git@master#egg=osm-common-0.1.4"
-    ],
+    # data_files=[('/etc/osm/', ['osm_nbi/nbi.cfg']),
+    #             ('/etc/systemd/system/', ['osm_nbi/osm-nbi.service']),
+    #             ],
     install_requires=[
-        'CherryPy', 'pymongo', 'jsonschema', 'PyYAML', 'python-keystoneclient'
-        # 'osm-common',
+        'CherryPy==18.1.2',
+        'osm-common @ git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common',
+        'jsonschema',
+        'PyYAML',
+        'osm-im @ git+https://osm.etsi.org/gerrit/osm/IM.git#egg=osm-im',
+        'python-keystoneclient',
+        'requests',
+        'aiohttp>=2.3.10',
     ],
     setup_requires=['setuptools-version-command'],
-    # test_suite='nose.collector',
-    # entry_points='''
-    #     [console_scripts]
-    #     osm=osm_nbi.nbi:nbi
-    #     ''',
 )