Reformat NBI to standardized format
[osm/NBI.git] / setup.py
1 #!/usr/bin/env python3
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.
18
19 import os
20 from setuptools import setup, find_packages
21
22 _name = "osm_nbi"
23 # version is at first line of osm_nbi/html_public/version
24 here = os.path.abspath(os.path.dirname(__file__))
25 # with open(os.path.join(here, 'osm_nbi/html_public/version')) as version_file:
26 # VERSION = version_file.readline().strip()
27 with open(os.path.join(here, "README.rst")) as readme_file:
28 README = readme_file.read()
29
30 setup(
31 name=_name,
32 description="OSM North Bound Interface",
33 long_description=README,
34 version_command=(
35 "git describe --match v* --tags --long --dirty",
36 "pep440-git-full",
37 ),
38 # version=VERSION,
39 # python_requires='>3.5.0',
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",
46 packages=find_packages(exclude=["temp", "local"]),
47 include_package_data=True,
48 setup_requires=["setuptools-version-command"],
49 )