-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
41 lines (34 loc) · 1.24 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
from setuptools import setup, find_packages
import catcher
def get_requirements() -> list:
with open('requirements.txt', 'r') as f:
return f.readlines()
def load_readme() -> str:
with open('Readme.rst', 'r') as f:
return f.read()
setup(name=catcher.APPNAME,
version=catcher.APPVSN,
description='Microservices automated test tool.',
long_description=load_readme(),
long_description_content_type='text/x-rst',
author=catcher.APPAUTHOR,
author_email='[email protected]',
url='https://github.com/comtihon/catcher',
packages=find_packages(),
install_requires=get_requirements(),
include_package_data=True,
package_data={'catcher': ['resources/*']},
entry_points={
'console_scripts': [
'catcher=catcher.__main__:main'
]},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Testing'
],
extras={'compose': ["docker-compose==1.24.*"]}
)