-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
33 lines (32 loc) · 928 Bytes
/
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
from setuptools import setup
from trcli import __version__
setup(
name="trcli",
long_description="The TR CLI (trcli) is a command line tool for interacting with TestRail and uploading test automation results.",
version=__version__,
packages=[
"trcli",
"trcli.commands",
"trcli.readers",
"trcli.data_providers",
"trcli.data_classes",
"trcli.api",
],
include_package_data=True,
install_requires=[
"click==8.0.3",
"pyyaml>=6.0.0,<7.0.0",
"junitparser>=3.1.0,<4.0.0",
"pyserde==0.12.*",
"requests>=2.31.0,<3.0.0",
"tqdm>=4.65.0,<5.0.0",
"humanfriendly>=10.0.0,<11.0.0",
"openapi-spec-validator>=0.5.0,<1.0.0",
"beartype>=0.17.0,<1.0.0",
"prance" # Does not use semantic versioning
],
entry_points="""
[console_scripts]
trcli=trcli.cli:cli
""",
)