blob: 2049a93bb1c848eec08de48698097b80b118b62a [file] [log] [blame]
beierlma1f627a2021-03-23 16:04:34 -04001#######################################################################################
2# Copyright ETSI Contributors and Others.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#######################################################################################
17
18from setuptools import setup
19
20_name = 'tests'
21_version_command = ('git describe --match v* --tags --long --dirty', 'pep440-git-full')
22_author = "OSM Support"
23_author_email = 'osmsupport@etsi.org'
24_description = 'OSM Tests'
25_maintainer = 'OSM Support'
26_maintainer_email = 'osmsupport@etsi.org'
27_license = 'Apache 2.0'
28_url = 'https://osm.etsi.org/gitweb/?p=osm/tests.git;a=tree'
29
30setup(
31 name=_name,
32 version_command=_version_command,
33 description=_description,
34 long_description=open('README.md', encoding='utf-8').read(),
35 author=_author,
36 author_email=_author_email,
37 maintainer=_maintainer,
38 maintainer_email=_maintainer_email,
39 url=_url,
40 license=_license,
41 packages=[_name],
42 package_dir={_name: 'robot-systest'},
43 include_package_data=True,
44 setup_requires=['setuptools-version-command']
45)