-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
60 lines (57 loc) · 2.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from pathlib import Path
from setuptools import (setup, find_packages)
with open('README.md', 'r') as fh:
long_description = fh.read()
root_dir = Path(__file__).parent.resolve()
req = root_dir / 'requirements.txt'
with open(req, 'r') as _file:
install_requires: list = _file.read().splitlines()
setup(
name='openapi-test-runner',
version='0.1.0',
description='OpenAPI test runner to perform conformance testing to API specs and functionality',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/elixir-cloud-aai/openapi-test-runner',
author='Lakshya Garg',
author_email='[email protected]',
maintainer='ELIXIR Cloud & AAI',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Typing :: Typed',
],
entry_points={
'console_scripts': [
'openapi-test-runner = compliance_suite.cli:main',
],
},
keywords=(
'ga4gh tes elixir rest api app server openapi '
'python compliance testing pydantic yaml '
),
project_urls={
'Repository': 'https://github.com/elixir-cloud-aai/openapi-test-runner',
'ELIXIR Cloud & AAI': 'https://elixir-europe.github.io/cloud/',
'Tracker': 'https://github.com/elixir-cloud-aai/openapi-test-runner/issues',
},
license='Apache License 2.0',
packages=find_packages(exclude=[
'unittests',
'unittests.*'
]),
package_data={'': ['../tests/*', '../docs/test_config/*', 'web/*/*']},
install_requires=install_requires
)