| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| tierno | 0c01ffa | 2018-11-19 14:39:33 +0100 | [diff] [blame] | 2 | # -*- coding: utf-8 -*- |
| 3 | |
| 4 | # Copyright 2018 Telefonica S.A. |
| 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 15 | # implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 18 | |
| tierno | dfe0957 | 2018-04-24 10:41:10 +0200 | [diff] [blame] | 19 | import os |
| tierno | 02a04c1 | 2018-11-22 15:30:13 +0000 | [diff] [blame] | 20 | from setuptools import setup, find_packages |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 21 | |
| 22 | _name = "osm_nbi" |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 23 | # version is at first line of osm_nbi/html_public/version |
| 24 | here = os.path.abspath(os.path.dirname(__file__)) |
| tierno | 28b0b31 | 2018-10-01 15:25:22 +0200 | [diff] [blame] | 25 | # with open(os.path.join(here, 'osm_nbi/html_public/version')) as version_file: |
| 26 | # VERSION = version_file.readline().strip() |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame^] | 27 | with open(os.path.join(here, "README.rst")) as readme_file: |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 28 | README = readme_file.read() |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 29 | |
| 30 | setup( |
| 31 | name=_name, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame^] | 32 | description="OSM North Bound Interface", |
| tierno | dfe0957 | 2018-04-24 10:41:10 +0200 | [diff] [blame] | 33 | long_description=README, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame^] | 34 | version_command=( |
| 35 | "git describe --match v* --tags --long --dirty", |
| 36 | "pep440-git-full", |
| 37 | ), |
| garciadeblas | 2f4fc96 | 2018-05-25 15:57:26 +0200 | [diff] [blame] | 38 | # version=VERSION, |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 39 | # python_requires='>3.5.0', |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame^] | 40 | author="ETSI OSM", |
| 41 | author_email="osmsupport@etsi.org", |
| 42 | maintainer="ETSI OSM", |
| 43 | maintainer_email="osmsupport@etsi.org", |
| 44 | url="https://osm.etsi.org/gitweb/?p=osm/NBI.git;a=summary", |
| 45 | license="Apache 2.0", |
| tierno | 02a04c1 | 2018-11-22 15:30:13 +0000 | [diff] [blame] | 46 | packages=find_packages(exclude=["temp", "local"]), |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 47 | include_package_data=True, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame^] | 48 | setup_requires=["setuptools-version-command"], |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 49 | ) |