forked from allankp/pytest-testrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 731 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
from setuptools import setup
def read_file(fname):
with open(fname) as f:
return f.read()
setup(
name='pytest-testrail',
description='pytest plugin for creating TestRail runs and adding results',
long_description=read_file('README.rst'),
version='2.3.3',
author='Allan Kilpatrick',
author_email='[email protected]',
url='http://github.com/allankp/pytest-testrail/',
packages=[
'pytest_testrail',
],
package_dir={'pytest_testrail': 'pytest_testrail'},
install_requires=[
'pytest>=3.6',
'requests>=2.20.0',
'simplejson',
],
include_package_data=True,
entry_points={'pytest11': ['pytest-testrail = pytest_testrail.conftest']},
)