-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
37 lines (33 loc) · 904 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
34
35
36
37
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='xunit2testrail',
version='0.7.3',
description='Report test results from xUnit xml file to TestRail',
long_description=long_description,
license='MIT',
author='Georgy Dyuldin',
author_email='[email protected]',
packages=find_packages(),
package_data={'': ['templates/*']},
entry_points={
'console_scripts': [
'report = xunit2testrail.cmd:main'
]
},
url="https://github.com/gdyuldin/testrail_reporter",
install_requires=[
'setuptools>=17.1',
'requests>=2.4.2',
'pytest-runner',
'Jinja2',
'six',
'prettytable',
],
extras_require={'test': [
'pytest-mock',
'requests-mock',
]},
)