forked from allankp/pytest-testrail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 730 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 730 Bytes
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
from setuptools import setup
long_description = open("README.rst").read()
setup(
name='pytest-testrail',
description='pytest plugin for creating TestRail runs and adding results',
long_description=long_description,
version='0.0.10',
author='Allan Kilpatrick',
author_email='allanklp@gmail.com',
url='http://github.com/allankilpatrick/pytest-testrail/',
packages=[
'pytest_testrail',
],
package_dir={'pytest_testrail': 'pytest_testrail'},
install_requires=[
'pytest>=2',
'configparser>=3,<4',
'requests==2.11.1',
'simplejson'
],
include_package_data=True,
entry_points={'pytest11': ['pytest-testrail = pytest_testrail.conftest']},
)