X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=blobdiff_plain;f=setup.py;h=8946575d5ac8ae4d568c770ccc9153afe2613f2e;hp=0f3c6160d65bccce5f7f7911590c8534ff58c5ec;hb=9c63011a8f3ff8f42ad90359323606b9aa9f2e7a;hpb=aa1ca7b9cc235663af09c67277d62302d6408702 diff --git a/setup.py b/setup.py index 0f3c616..8946575 100644 --- 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,24 @@ 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']), - ], + # 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" + "git+https://osm.etsi.org/gerrit/osm/IM.git#egg=osm-im", + 'git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common' ], install_requires=[ - 'CherryPy', 'pymongo', 'jsonschema', 'PyYAML', 'python-keystoneclient' - # 'osm-common', + 'CherryPy==18.0.0', + 'osm-common', + 'jsonschema', + 'PyYAML', + 'osm-im', + 'python-keystoneclient', + 'requests' ], setup_requires=['setuptools-version-command'], - # test_suite='nose.collector', - # entry_points=''' - # [console_scripts] - # osm=osm_nbi.nbi:nbi - # ''', )