forked from cafykit/cafy-pytest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 793 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
'''
Created on Feb 16, 2017
@author: [email protected]
'''
# sample ./setup.py file
from setuptools import setup
from cafy_pytest.__version__ import __version__
#__version__ = "0.1.0"
setup(
name="cafy_pytest",
packages=['cafy_pytest'],
package_data={'cafy_pytest': ['resources/*']},
author='Cafy',
author_email='[email protected]',
version=__version__,
license="GPLv2",
url='https://github.com/kuamrend/cafy-pytest',
description='Pytest Cafy Plugin',
install_requires=['pytest>=2.3', 'jinja2'],
# 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",
],
)