forked from cafykit/cafy-pytest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 819 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
'''
Created on Feb 16, 2017
'''
from setuptools import setup
from cafy_pytest.__version__ import __version__
setup(
name="cafy_pytest",
packages=['cafy_pytest'],
package_data={'cafy_pytest': ['resources/*']},
author='Cafy',
version=__version__,
url='https://github.com/cafykit/cafy-pytest',
description='Pytest Cafy Plugin',
install_requires=[
'allure-pytest',
'jinja2',
'pytest>=2.3',
'PyYAML',
'remote-pdb',
'requests',
'tabulate',
'urllib3',
'validators',
],
# the following makes a plugin available to pytest
entry_points={
'pytest11': ['cafy_pytest = cafy_pytest.plugin']
},
# custom PyPI classifier for pytest plugins
classifiers=[
"Framework :: Pytest",
],
)