-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.cfg
71 lines (63 loc) · 1.75 KB
/
setup.cfg
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
68
69
70
71
[metadata]
name = betamax
version = attr: betamax.__version__
description = A VCR imitation for python-requests
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/sigmavirus24/betamax
author = Ian Stapleton Cordasco
author_email = [email protected]
license = Apache-2.0
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Quality Assurance
[options]
packages = find:
include_package_data = True
install_requires =
requests >= 2.0
python_requires = >=3.8.1
package_dir =
=src
[options.packages.find]
where = src
exclude =
tests
tests.integration
[options.package_data]
* = LICENSE AUTHORS.rst HISTORY.rst README.rst
[options.entry_points]
pytest11 =
pytest-betamax = betamax.fixtures.pytest
[bdist_wheel]
universal = 1
[coverage:run]
source =
betamax
tests
plugins = covdefaults
#[coverage:report]
#fail_under = 70
#[mypy]
#check_untyped_defs = true
#disallow_any_generics = true
#disallow_incomplete_defs = true
#disallow_untyped_defs = true
#no_implicit_optional = true
#warn_unused_ignores = true
#
#[mypy-tests.*]
#disallow_untyped_defs = false