-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
67 lines (58 loc) · 1.67 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import setup, find_packages
requires = {
'setup': [
'configparser',
],
'install': [
'pytest',
],
'tests': [
'pytest',
'pytest-cov',
'pytest-flake8',
'pytest-timeout',
'requests',
],
}
requires['all'] = list({dep for deps in requires.values() for dep in deps})
def readme():
with open('README.md', 'r') as f:
return f.read()
setup(
name='pytest-consul',
version='0.2.0',
description='pytest plugin with fixtures for testing consul aware apps',
long_description=readme(),
url='http://github.com/daroot/pytest-consul',
author='Dan Root',
author_email='[email protected]',
license='WTFPL',
packages=find_packages(),
setup_requires=requires['setup'],
install_requires=requires['install'],
tests_require=requires['tests'],
extras_require=requires,
include_package_data=True,
zip_safe=False,
platforms='any',
entry_points={
'pytest11': [
'consul = pytest_consul.plugin',
],
},
keywords=['pytest', 'consul'],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Pytest',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'Operating System :: OS Independent',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)