forked from gurock/trcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 878 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.1.*",
"pyyaml==6.0.*",
"junitparser==3.1.*",
"pyserde==0.12.*",
"requests==2.31.*",
"tqdm==4.65.*",
"humanfriendly==10.0.*",
"openapi-spec-validator==0.5.*",
"beartype==0.17.*",
"prance" # Does not use semantic versioning
],
entry_points="""
[console_scripts]
trcli=trcli.cli:cli
""",
)