-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
47 lines (43 loc) · 1.46 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
42
43
44
45
46
47
# pylint: disable=missing-docstring
from setuptools import find_packages, setup
with open("README.rst", "rb") as fp:
LONG_DESCRIPTION = fp.read().decode("utf-8").strip()
setup(
name="dump2polarion",
use_scm_version=True,
url="https://github.com/mkoura/dump2polarion",
description="Dump testcases results to xunit file; submit files to Polarion Importers",
long_description=LONG_DESCRIPTION,
author="Martin Kourim",
author_email="[email protected]",
license="GPL",
packages=find_packages(exclude=("tests",)),
entry_points={
"console_scripts": [
"csv2sqlite.py = dump2polarion.csv2sqlite_cli:main",
"polarion_dumper.py = dump2polarion.dumper_cli:main",
]
},
setup_requires=["setuptools_scm"],
install_requires=[
"lxml",
"pyyaml",
"requests",
"docutils",
"packaging",
"python-box",
"polarion-tools-common",
],
keywords=["polarion", "testing"],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
],
include_package_data=True,
)