aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2023-08-29 11:07:31 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-08-29 11:07:31 +0000
commitf1db2cd21ffd0089578fd72dd32e3df5f2f40f44 (patch)
treef40c1a21c47e1a74164c5feb8a577145a2970aeb /setup.cfg
parentf9490653f18ce1f2997b79d6ef6d46f2b10ee44d (diff)
parent9f1f3798d8b527775c7be9fbc1435b736c3262d3 (diff)
downloadpyfakefs-f1db2cd21ffd0089578fd72dd32e3df5f2f40f44.tar.gz
Upgrade pyfakefs to 979a878b12a3f625abe986a2249b677e6193ae3d am: a3bcabf4b7 am: 78fdc2ac9e am: 1261801ef1 am: 9f1f3798d8
Original change: https://android-review.googlesource.com/c/platform/external/python/pyfakefs/+/2726660 Change-Id: I977085ee5559dca0f3dfca9a59a1943e4f82e8de Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg64
1 files changed, 62 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 0379a60..a45a048 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,4 +1,64 @@
[metadata]
-description_file = README.md
+name = pyfakefs
+version = attr: pyfakefs.__version__
+author = Google
+author_email = google-pyfakefs@google.com
+maintainer = John McGehee
+maintainer_email = pyfakefs@johnnado.com
+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.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
+ 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
+universal = 0
+
+[options]
+packages = find:
+install_requires =
+python_requires = >=3.8
+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