-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.19 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
#!/usr/bin/env python
import setuptools as s
with open("README.md", "r") as fh:
long_description = fh.read()
s.setup(
name="pytest-track",
version="0.1.3",
author="Virtosu Bogdan",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/virtosubogdan/pytest-track",
packages=s.find_packages(),
include_package_data=True,
install_requires=[
"mando==0.6.4",
"atlassian-python-api==1.11.19",
"pytest>=3.0",
"beautifulsoup4",
"tabulate",
"Jinja2",
],
entry_points={"pytest11": ["track = pytest_track.plugin"]},
license="MIT",
keywords="pytest report",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)