11[build-system ]
22build-backend = " hatchling.build"
3- requires = [" hatchling>=1.12.2" , " hatch-vcs>=0.3" ]
3+ requires = [
4+ " hatch-vcs>=0.3" ,
5+ " hatchling>=1.12.2" ,
6+ ]
47
58[project ]
69name = " pytest-env"
710description = " py.test plugin that allows you to add environment variables."
811readme = " README.md"
12+ keywords = [
13+ " env" ,
14+ " pytest" ,
15+ ]
916license.file = " LICENSE"
1017maintainers = [{ name = " Bernát Gábor" , email = " gaborjbernat@gmail.com" }]
11- urls.Homepage = " https://github.com/pytest-dev/pytest-env"
12- urls.Source = " https://github.com/pytest-dev/pytest-env"
13- urls.Tracker = " https://github.com/pytest-dev/pytest-env/issues"
1418requires-python = " >=3.7"
15- dependencies = [" pytest>=7.2.1" ]
16- optional-dependencies.test = [" coverage>=7.1" , " pytest-mock>=3.10" ]
17- keywords = [" pytest" , " env" ]
1819classifiers = [
1920 " Development Status :: 5 - Production/Stable" ,
2021 " Intended Audience :: Developers" ,
@@ -26,8 +27,19 @@ classifiers = [
2627 " Programming Language :: Python :: Implementation :: CPython" ,
2728 " Topic :: Software Development :: Libraries :: Python Modules" ,
2829]
29- dynamic = [" version" ]
30-
30+ dynamic = [
31+ " version" ,
32+ ]
33+ dependencies = [
34+ " pytest>=7.2.1" ,
35+ ]
36+ optional-dependencies.test = [
37+ " coverage>=7.1" ,
38+ " pytest-mock>=3.10" ,
39+ ]
40+ urls.Homepage = " https://github.com/pytest-dev/pytest-env"
41+ urls.Source = " https://github.com/pytest-dev/pytest-env"
42+ urls.Tracker = " https://github.com/pytest-dev/pytest-env/issues"
3143[project .entry-points .pytest11 ]
3244env = " pytest_env.plugin"
3345
@@ -38,6 +50,10 @@ version.source = "vcs"
3850[tool .black ]
3951line-length = 120
4052
53+ [tool .isort ]
54+ profile = " black"
55+ known_first_party = [" pytest_env" ]
56+
4157[tool .coverage ]
4258run.source = [" pytest_env" , " tests" ]
4359run.dynamic_context = " test_function"
@@ -60,7 +76,3 @@ paths.source = [
6076python_version = " 3.10"
6177show_error_codes = true
6278strict = true
63-
64- [tool .isort ]
65- profile = " black"
66- known_first_party = [" pytest_env" ]
0 commit comments