-
Notifications
You must be signed in to change notification settings - Fork 91
/
setup.cfg
67 lines (62 loc) · 1.83 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
[metadata]
name = pyfakefs
version = attr: pyfakefs.__version__
author = Google
author_email = [email protected]
maintainer = John McGehee
maintainer_email = [email protected]
license = http://www.apache.org/licenses/LICENSE-2.0
description = pyfakefs implements a fake file system that mocks the Python file system modules.
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
testing
test
file
os
shutil
pathlib
mocking
unittest
pytest
fakes
filesystem
url = https://github.com/pytest-dev/pyfakefs
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: POSIX
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Testing
Topic :: System :: Filesystems
Framework :: Pytest
[bdist_wheel]
universal = 0
[options]
packages = find:
install_requires =
python_requires = >=3.7
test_suite = pyfakefs.tests
include_package_data = True
[options.packages.find]
exclude = docs
[options.package_data]
pyfakefs = py.typed
[options.entry_points]
pytest11 =
pytest_fakefs = pyfakefs.pytest_plugin