blob: bb062d7909fac1944b4c488da5e01cab6ba345ce [file] [log] [blame]
magnussonl2b0e2d72020-02-04 10:52:46 +01001# Copyright 2020 ArctosLabs Scandinavia AB
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12# implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15from setuptools import setup
16
17
18def parse_requirements(requirements):
19 with open(requirements) as f:
magnussonld8c1b392020-06-30 16:48:08 +020020 return [req.strip('\n') for req in f if req.strip('\n') and not req.startswith('#') and '://' not in req]
magnussonl2b0e2d72020-02-04 10:52:46 +010021
22
23_name = 'osm_pla'
magnussonl41cccfa2020-07-02 19:39:15 +020024_version_command = ('git describe --match v* --tags --long --dirty', 'pep440-git-full')
magnussonl2b0e2d72020-02-04 10:52:46 +010025_description = 'OSM Placement Module'
beierlm6e06e752021-02-16 16:52:29 -050026_author = "OSM Support"
27_author_email = 'osmsupport@etsi.org'
28_maintainer = 'OSM Support'
29_maintainer_email = 'osmsupport@etsi.org'
magnussonl2b0e2d72020-02-04 10:52:46 +010030_license = 'Apache 2.0'
31_url = 'https://osm.etsi.org/gitweb?p=osm/PLA.git;a=tree'
32
33
34setup(
35 name=_name,
magnussonl41cccfa2020-07-02 19:39:15 +020036 version_command=_version_command,
magnussonl2b0e2d72020-02-04 10:52:46 +010037 description=_description,
38 long_description=open('README.md', encoding='utf-8').read(),
39 author=_author,
40 author_email=_author_email,
41 maintainer=_maintainer,
42 maintainer_email=_maintainer_email,
43 url=_url,
44 license=_license,
45 packages=[_name],
46 package_dir={_name: _name},
magnussonl2b0e2d72020-02-04 10:52:46 +010047 include_package_data=True,
48 entry_points={
49 "console_scripts": [
50 "osm-pla-server = osm_pla.cmd.pla_server:main",
51 ]
52 },
53 setup_requires=['setuptools-version-command']
54)