forked from popescunsergiu/pytest-testrail-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (40 loc) · 1.38 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
setup(
name="pytest_testrail",
use_scm_version=True,
description="pytest plugin for Testrail",
long_description=open("README.rst").read(),
author="Sergiu Popescu",
author_email="[email protected]",
url="https://github.com/popescunsergiu/pytest_testrail",
packages=["pytest_testrail", "pytest_testrail.model"],
install_requires=[
"pytest>=4.2",
"pytest-variables>=1.5.0",
"requests",
"gherkin-official>=4.1.3"
],
entry_points={
"pytest11": [
"TestRailAPI = pytest_testrail.testrail_api",
]
},
setup_requires=["setuptools_scm"],
license="Mozilla Public License 2.0 (MPL 2.0)",
keywords="py.test pytest qa ",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)