-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
63 lines (53 loc) · 1.32 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
#!/usr/bin/env python
"""
pytest-responses
================
py.test integration for responses
:copyright: (c) 2016 David Cramer
:license: Apache 2.0
"""
from setuptools import setup
setup_requires = []
install_requires = [
'responses',
'pytest>=2.5',
]
tests_require = [
'flake8',
]
extras_require = {
'tests': tests_require,
}
setup(
name='pytest-responses',
version='0.5.1',
author='David Cramer',
author_email='dcramer@gmail.com',
description=(
'py.test integration for responses'
),
url='https://github.com/getsentry/pytest-responses',
license='Apache 2.0',
long_description=open('README.rst').read(),
py_modules=['pytest_responses'],
zip_safe=False,
install_requires=install_requires,
extras_require=extras_require,
tests_require=tests_require,
setup_requires=setup_requires,
include_package_data=True,
entry_points={
'pytest11': [
'pytest-responses = pytest_responses',
]
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Framework :: Pytest',
],
)