-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
52 lines (50 loc) · 1.38 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
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='networktest',
description='Tools for testing applications that make network requests.',
long_description=readme,
packages=find_packages(exclude=['tests']),
use_scm_version=True,
author='Matt Wisniewski',
author_email='[email protected]',
url='https://github.com/jwplayer/networktest',
keywords=[
'network',
'test',
'functional',
'unit',
'integration',
'api',
'http',
'request'
],
license='Apache License 2.0',
setup_requires=[
'pytest-runner',
'setuptools_scm',
],
tests_require=[
'pytest',
'pytest-flake8',
'pytest-cov',
'requests'
],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Pytest',
],
entry_points={
'pytest11': ['networktest = networktest.pytest.plugin']
},
)