File tree Expand file tree Collapse file tree 4 files changed +14
-20
lines changed Expand file tree Collapse file tree 4 files changed +14
-20
lines changed Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [" setuptools>=56" ]
3
+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 2
2
name = requests-mock
3
3
author = Jamie Lennox
4
4
5
- summary = Mock out responses from the requests package
6
- description_file = README.rst
5
+ description = Mock out responses from the requests package
6
+ long_description = file: README.rst
7
7
license = Apache-2
8
- license_file = LICENSE
9
- home_page = https://requests-mock.readthedocs.io/
8
+ url = https://requests-mock.readthedocs.io/
10
9
project_urls =
11
10
Source = https://github.com/jamielennox/requests-mock
12
- classifier =
11
+ classifiers =
13
12
Development Status :: 5 - Production/Stable
14
13
Intended Audience :: Developers
15
14
Intended Audience :: Information Technology
@@ -25,11 +24,13 @@ classifier =
25
24
Programming Language :: Python :: Implementation :: CPython
26
25
Programming Language :: Python :: Implementation :: PyPy
27
26
Topic :: Software Development :: Testing
28
- test_suite = tests
29
27
30
- [files ]
28
+ [options ]
31
29
packages = requests_mock
32
- package-data = requests_mock = py.typed, *.pyi
30
+ include_package_data = true
31
+ install_requires =
32
+ requests>=2.22,<3
33
+ six
33
34
34
35
[build_sphinx]
35
36
all_files = 1
@@ -39,11 +40,11 @@ source-dir = doc/source
39
40
[bdist_wheel]
40
41
universal = 1
41
42
42
- [extras ]
43
+ [options.extras_require ]
43
44
fixture =
44
45
fixtures
45
46
46
- [entry_points]
47
+ [options. entry_points]
47
48
pytest11 =
48
49
requests_mock = requests_mock.contrib._pytest_plugin
49
50
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,9 +13,7 @@ commands =
13
13
pytest tests/pytest
14
14
python -m testtools.run {posargs:discover}
15
15
deps =
16
- -r{toxinidir}/requirements.txt
17
16
-r{toxinidir}/test-requirements.txt
18
- pbr
19
17
20
18
[testenv:pep8]
21
19
commands = flake8 requests_mock tests
You can’t perform that action at this time.
0 commit comments