|
1 | 1 | [build-system] |
2 | 2 | build-backend = "hatchling.build" |
3 | | -requires = ["hatch-vcs>=0.3", "hatchling>=1.11.1"] |
| 3 | +requires = [ |
| 4 | + "hatch-vcs>=0.3", |
| 5 | + "hatchling>=1.12.2", |
| 6 | +] |
4 | 7 |
|
5 | 8 | [project] |
6 | 9 | name = "virtualenv" |
7 | 10 | description = "Virtual Python Environment builder" |
8 | 11 | readme = "README.md" |
| 12 | +keywords = [ |
| 13 | + "environments", |
| 14 | + "isolated", |
| 15 | + "virtual", |
| 16 | +] |
9 | 17 | license = "MIT" |
10 | 18 | maintainers = [{ name = "Bernat Gabor", email = "gaborjbernat@gmail.com" }] |
11 | | -urls.Documentation = "https://virtualenv.pypa.io" |
12 | | -urls.Homepage = "https://github.com/pypa/virtualenv" |
13 | | -urls.Source = "https://github.com/pypa/virtualenv" |
14 | | -urls.Tracker = "https://github.com/pypa/virtualenv/issues" |
15 | | -scripts.virtualenv = "virtualenv.__main__:run_with_catch" |
16 | 19 | requires-python = ">=3.7" |
| 20 | +classifiers = [ |
| 21 | + "Development Status :: 5 - Production/Stable", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "License :: OSI Approved :: MIT License", |
| 24 | + "Operating System :: MacOS :: MacOS X", |
| 25 | + "Operating System :: Microsoft :: Windows", |
| 26 | + "Operating System :: POSIX", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3 :: Only", |
| 29 | + "Programming Language :: Python :: Implementation :: CPython", |
| 30 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 31 | + "Topic :: Software Development :: Libraries", |
| 32 | + "Topic :: Software Development :: Testing", |
| 33 | + "Topic :: Utilities", |
| 34 | +] |
| 35 | +dynamic = [ |
| 36 | + "version", |
| 37 | +] |
17 | 38 | dependencies = [ |
18 | 39 | "distlib<1,>=0.3.6", |
19 | 40 | "filelock<4,>=3.4.1", |
20 | 41 | 'importlib-metadata>=4.8.3; python_version < "3.8"', |
21 | 42 | "platformdirs<3,>=2.4", |
22 | 43 | ] |
| 44 | +optional-dependencies.docs = [ |
| 45 | + "proselint>=0.13", |
| 46 | + "sphinx>=5.3", |
| 47 | + "sphinx-argparse>=0.4", |
| 48 | + "sphinx-rtd-theme>=1.1.1", |
| 49 | + "towncrier>=22.12", |
| 50 | +] |
23 | 51 | optional-dependencies.test = [ |
24 | 52 | "covdefaults>=2.2.2", |
25 | | - "coverage>=7.0.2", |
| 53 | + "coverage>=7.1", |
26 | 54 | "coverage-enable-subprocess>=1", |
27 | 55 | "flaky>=3.7", |
28 | | - "packaging>=22", |
29 | | - "pytest>=7.2", |
| 56 | + "packaging>=23", |
| 57 | + "pytest>=7.2.1", |
30 | 58 | "pytest-env>=0.8.1", |
31 | 59 | "pytest-freezegun>=0.4.2", |
32 | 60 | "pytest-mock>=3.10", |
33 | 61 | "pytest-randomly>=3.12", |
34 | 62 | "pytest-timeout>=2.1", |
35 | 63 | ] |
36 | | -optional-dependencies.docs = [ |
37 | | - "proselint>=0.13", |
38 | | - "sphinx>=5.3", |
39 | | - "sphinx-argparse>=0.4", |
40 | | - "sphinx-rtd-theme>=1.1.1", |
41 | | - "towncrier>=22.12", |
42 | | -] |
43 | | -keywords = ["environments", "isolated", "virtual"] |
44 | | -classifiers = [ |
45 | | - "Development Status :: 5 - Production/Stable", |
46 | | - "Intended Audience :: Developers", |
47 | | - "License :: OSI Approved :: MIT License", |
48 | | - "Operating System :: MacOS :: MacOS X", |
49 | | - "Operating System :: Microsoft :: Windows", |
50 | | - "Operating System :: POSIX", |
51 | | - "Programming Language :: Python :: 3", |
52 | | - "Programming Language :: Python :: 3 :: Only", |
53 | | - "Programming Language :: Python :: Implementation :: CPython", |
54 | | - "Programming Language :: Python :: Implementation :: PyPy", |
55 | | - "Topic :: Software Development :: Libraries", |
56 | | - "Topic :: Software Development :: Testing", |
57 | | - "Topic :: Utilities", |
58 | | -] |
59 | | -dynamic = ["version"] |
| 64 | +urls.Documentation = "https://virtualenv.pypa.io" |
| 65 | +urls.Homepage = "https://github.com/pypa/virtualenv" |
| 66 | +urls.Source = "https://github.com/pypa/virtualenv" |
| 67 | +urls.Tracker = "https://github.com/pypa/virtualenv/issues" |
| 68 | +scripts.virtualenv = "virtualenv.__main__:run_with_catch" |
60 | 69 |
|
61 | 70 | [project.entry-points."virtualenv.activate"] |
62 | 71 | bash = "virtualenv.activation.bash:BashActivator" |
@@ -137,4 +146,4 @@ ignore = [ |
137 | 146 | markers = ["slow"] |
138 | 147 | timeout = 600 |
139 | 148 | addopts = "--tb=auto -ra --showlocals --no-success-flaky-report" |
140 | | -env = ["PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command", "PYTHONIOENCODING=utf-8"] |
| 149 | +env = ["PYTHONIOENCODING=utf-8"] |
0 commit comments