• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[metadata]
2name = pyfakefs
3version = attr: pyfakefs.__version__
4author = Google
5author_email = google-pyfakefs@google.com
6maintainer = John McGehee
7maintainer_email = pyfakefs@johnnado.com
8license = http://www.apache.org/licenses/LICENSE-2.0
9description = pyfakefs implements a fake file system that mocks the Python file system modules.
10long_description = file: README.md
11long_description_content_type = text/markdown
12keywords =
13    testing
14    test
15    file
16    os
17    shutil
18    pathlib
19    mocking
20    unittest
21    pytest
22    fakes
23    filesystem
24url = https://github.com/pytest-dev/pyfakefs
25classifiers =
26    Development Status :: 5 - Production/Stable
27    Environment :: Console
28    Intended Audience :: Developers
29    License :: OSI Approved :: Apache Software License
30    Programming Language :: Python :: 3
31    Programming Language :: Python :: 3.7
32    Programming Language :: Python :: 3.8
33    Programming Language :: Python :: 3.9
34    Programming Language :: Python :: 3.10
35    Programming Language :: Python :: 3.11
36    Programming Language :: Python :: 3.12
37    Programming Language :: Python :: 3.13
38    Programming Language :: Python :: Implementation :: CPython
39    Programming Language :: Python :: Implementation :: PyPy
40    Operating System :: POSIX
41    Operating System :: MacOS
42    Operating System :: Microsoft :: Windows
43    Topic :: Software Development :: Libraries
44    Topic :: Software Development :: Libraries :: Python Modules
45    Topic :: Software Development :: Testing
46    Topic :: System :: Filesystems
47    Framework :: Pytest
48
49[bdist_wheel]
50universal = 0
51
52[options]
53packages = find:
54install_requires =
55python_requires = >=3.7
56test_suite = pyfakefs.tests
57include_package_data = True
58
59[options.packages.find]
60exclude = docs
61
62[options.package_data]
63pyfakefs = py.typed
64
65[options.entry_points]
66pytest11 =
67    pytest_fakefs = pyfakefs.pytest_plugin
68