-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (97 loc) · 2.91 KB
/
pyproject.toml
File metadata and controls
106 lines (97 loc) · 2.91 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfakefs"
description = "Implements a fake file system that mocks the Python file system modules."
readme = "README.md"
license = "Apache-2.0"
license-files = ["COPYING"]
authors = [
{ name = "Google", email = "google-pyfakefs@google.com" },
{ name = "John McGehee", email = "pyfakefs@johnnado.com" }
]
maintainers = [
{ name = "mrbean-bremen", email = "hansemrbean@googlemail.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"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",
]
keywords = [
"testing",
"filesystem",
"mocking",
"unittest",
"pytest",
]
requires-python = ">=3.10"
dynamic = ["version"]
entry-points.pytest11.fakefs = "pyfakefs.pytest_plugin"
[project.urls]
documentation = "https://pytest-pyfakefs.readthedocs.io/"
homepage = "https://github.com/pytest-dev/pyfakefs"
repository = "https://github.com/pytest-dev/pyfakefs"
changelog = "https://github.com/pytest-dev/pyfakefs/blob/main/CHANGES.md"
[dependency-groups]
dev = [
"pytest>=6.2.5",
"pre-commit>=4.1.4",
]
extra = [
"pandas==2.3.3",
"xlrd==2.0.2",
"openpyxl==3.1.5",
]
[project.optional-dependencies]
doc = [
"sphinx>=7.0.0",
"furo>=2025.12.19",
"myst-parser>=5.0.0"
]
[tool.setuptools]
include-package-data = true
packages = [
"pyfakefs",
"pyfakefs.tests",
"pyfakefs.tests.fixtures",
"pyfakefs.pytest_tests",
"pyfakefs.pytest_tests.hook_test",
"pyfakefs.pytest_tests.ns_package.test",
"pyfakefs.pytest_tests.ns_package.test.ns_package.test",
]
[tool.setuptools.package-data]
where = ["pyfakefs"]
pyfakefs = ["py.typed", "**/*.parquet", "**/*.xlsx"]
[tool.setuptools.dynamic]
version = { attr = "pyfakefs.__version__" }
[tool.tox]
requires = ["tox>=4.22"]
env_list = ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.10"]
[tool.tox.env_run_base]
description = "Run test under {base_python}"
dependency_groups = [
"dev", "extra"
]
pass_env = ["HOME", "USERPROFILE"]
commands = [
["python", "-m", "pyfakefs.tests.all_tests"],
["python", "-m", "pytest", "pyfakefs/pytest_tests/pytest_plugin_test.py"]
]