| beierlm | a1f627a | 2021-03-23 16:04:34 -0400 | [diff] [blame] | 1 | ####################################################################################### |
| 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 | |
| 18 | from 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 | |
| 30 | setup( |
| 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 | ) |