1[metadata] 2name = pyfakefs 3version = attr: pyfakefs.__version__ 4author = Google 5author_email = [email protected] 6maintainer = John McGehee 7maintainer_email = [email protected] 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.8 32 Programming Language :: Python :: 3.9 33 Programming Language :: Python :: 3.10 34 Programming Language :: Python :: 3.11 35 Programming Language :: Python :: Implementation :: CPython 36 Programming Language :: Python :: Implementation :: PyPy 37 Operating System :: POSIX 38 Operating System :: MacOS 39 Operating System :: Microsoft :: Windows 40 Topic :: Software Development :: Libraries 41 Topic :: Software Development :: Libraries :: Python Modules 42 Topic :: Software Development :: Testing 43 Topic :: System :: Filesystems 44 Framework :: Pytest 45 46[bdist_wheel] 47universal = 0 48 49[options] 50packages = find: 51install_requires = 52python_requires = >=3.8 53test_suite = pyfakefs.tests 54include_package_data = True 55 56[options.packages.find] 57exclude = docs 58 59[options.package_data] 60pyfakefs = py.typed 61 62[options.entry_points] 63pytest11 = 64 pytest_fakefs = pyfakefs.pytest_plugin 65