tox-envfile 0.0.7__tar.gz → 0.0.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tox_envfile-0.0.8/.cookiecutter/includes/pyproject.toml/dependencies +1 -0
- tox_envfile-0.0.8/.cookiecutter/includes/pyproject.toml/tail +2 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.gitignore +1 -1
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/PKG-INFO +3 -3
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/pyproject.toml +29 -2
- tox_envfile-0.0.8/setup.cfg +15 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/src/tox_envfile.egg-info/PKG-INFO +3 -3
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/src/tox_envfile.egg-info/SOURCES.txt +2 -2
- tox_envfile-0.0.7/.cookiecutter/includes/setuptools/entry_points +0 -2
- tox_envfile-0.0.7/.cookiecutter/includes/setuptools/install_requires +0 -1
- tox_envfile-0.0.7/setup.cfg +0 -44
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.cookiecutter/cookiecutter.json +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.cookiecutter/includes/README/head.md +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.cookiecutter/includes/README/tail.md +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.cookiecutter/includes/tox/deps +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.github/dependabot.yml +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.github/workflows/ci.yml +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.github/workflows/keepalive.yml +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.github/workflows/pypi.yml +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.github/workflows/slack.yml +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/.python-version +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/LICENSE +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/Makefile +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/README.md +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/bin/make_python +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/bin/make_template +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/src/tox_envfile/__init__.py +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/src/tox_envfile/plugin.py +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/src/tox_envfile.egg-info/dependency_links.txt +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/src/tox_envfile.egg-info/entry_points.txt +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/src/tox_envfile.egg-info/requires.txt +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/src/tox_envfile.egg-info/top_level.txt +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/tests/__init__.py +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/tests/functional/__init__.py +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/tests/functional/sanity_test.py +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/tests/pyproject.toml +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/tests/unit/__init__.py +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/tests/unit/tox_envfile/__init__.py +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/tests/unit/tox_envfile/plugin_test.py +0 -0
- {tox_envfile-0.0.7 → tox_envfile-0.0.8}/tox.ini +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
"python-dotenv",
|
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: tox-envfile
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.8
|
4
4
|
Summary: Load env files in your tox envs.
|
5
|
-
|
6
|
-
Project-URL:
|
5
|
+
Project-URL: Repository, https://github.com/hypothesis/tox-envfile
|
6
|
+
Project-URL: Issues, https://github.com/hypothesis/tox-envfile/issues
|
7
7
|
Project-URL: Changelog, https://github.com/hypothesis/tox-envfile/releases
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
9
|
Classifier: License :: OSI Approved :: BSD License
|
@@ -2,8 +2,31 @@
|
|
2
2
|
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
|
3
3
|
build-backend = "setuptools.build_meta"
|
4
4
|
|
5
|
+
[project]
|
6
|
+
dynamic = ["version"]
|
7
|
+
name = "tox-envfile"
|
8
|
+
description = "Load env files in your tox envs."
|
9
|
+
readme = "README.md"
|
10
|
+
classifiers = [
|
11
|
+
"Programming Language :: Python :: 3",
|
12
|
+
"License :: OSI Approved :: BSD License",
|
13
|
+
"Intended Audience :: Developers",
|
14
|
+
]
|
15
|
+
requires-python = ">=3.9"
|
16
|
+
dependencies = [
|
17
|
+
"python-dotenv",
|
18
|
+
]
|
19
|
+
|
20
|
+
[project.urls]
|
21
|
+
Repository = "https://github.com/hypothesis/tox-envfile"
|
22
|
+
Issues = "https://github.com/hypothesis/tox-envfile/issues"
|
23
|
+
Changelog = "https://github.com/hypothesis/tox-envfile/releases"
|
5
24
|
[tool.setuptools_scm]
|
6
25
|
|
26
|
+
|
27
|
+
[project.entry-points.tox]
|
28
|
+
tox-envfile = "tox_envfile"
|
29
|
+
|
7
30
|
[tool.pytest.ini_options]
|
8
31
|
addopts = "-q"
|
9
32
|
filterwarnings = [
|
@@ -60,6 +83,10 @@ show_missing = true
|
|
60
83
|
precision = 2
|
61
84
|
fail_under = 100.00
|
62
85
|
skip_covered = true
|
86
|
+
exclude_also = [
|
87
|
+
# `if TYPE_CHECKING:` blocks are only executed while running mypy.
|
88
|
+
"if TYPE_CHECKING:",
|
89
|
+
]
|
63
90
|
|
64
91
|
[tool.isort]
|
65
92
|
multi_line_output = 3
|
@@ -154,8 +181,8 @@ disable_error_code = [
|
|
154
181
|
]
|
155
182
|
|
156
183
|
[[tool.mypy.overrides]]
|
157
|
-
module= [
|
158
|
-
# Don't try to typecheck the tests for now
|
184
|
+
module = [
|
185
|
+
# Don't try to typecheck the tests for now.
|
159
186
|
"tests.*",
|
160
187
|
]
|
161
188
|
ignore_errors = true
|
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: tox-envfile
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.8
|
4
4
|
Summary: Load env files in your tox envs.
|
5
|
-
|
6
|
-
Project-URL:
|
5
|
+
Project-URL: Repository, https://github.com/hypothesis/tox-envfile
|
6
|
+
Project-URL: Issues, https://github.com/hypothesis/tox-envfile/issues
|
7
7
|
Project-URL: Changelog, https://github.com/hypothesis/tox-envfile/releases
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
9
|
Classifier: License :: OSI Approved :: BSD License
|
@@ -9,8 +9,8 @@ tox.ini
|
|
9
9
|
.cookiecutter/cookiecutter.json
|
10
10
|
.cookiecutter/includes/README/head.md
|
11
11
|
.cookiecutter/includes/README/tail.md
|
12
|
-
.cookiecutter/includes/
|
13
|
-
.cookiecutter/includes/
|
12
|
+
.cookiecutter/includes/pyproject.toml/dependencies
|
13
|
+
.cookiecutter/includes/pyproject.toml/tail
|
14
14
|
.cookiecutter/includes/tox/deps
|
15
15
|
.github/dependabot.yml
|
16
16
|
.github/workflows/ci.yml
|
@@ -1 +0,0 @@
|
|
1
|
-
python-dotenv
|
tox_envfile-0.0.7/setup.cfg
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
[metadata]
|
2
|
-
name = tox-envfile
|
3
|
-
description = Load env files in your tox envs.
|
4
|
-
long_description = file: README.md
|
5
|
-
long_description_content_type = text/markdown
|
6
|
-
url = https://github.com/hypothesis/tox-envfile
|
7
|
-
project_urls =
|
8
|
-
Bug Tracker = https://github.com/hypothesis/tox-envfile/issues
|
9
|
-
Changelog = https://github.com/hypothesis/tox-envfile/releases
|
10
|
-
classifiers =
|
11
|
-
Programming Language :: Python :: 3
|
12
|
-
License :: OSI Approved :: BSD License
|
13
|
-
Intended Audience :: Developers
|
14
|
-
|
15
|
-
[options]
|
16
|
-
package_dir =
|
17
|
-
= src
|
18
|
-
packages = find:
|
19
|
-
python_requires = >=3.9
|
20
|
-
install_requires =
|
21
|
-
python-dotenv
|
22
|
-
|
23
|
-
[options.packages.find]
|
24
|
-
where = src
|
25
|
-
|
26
|
-
[options.entry_points]
|
27
|
-
tox =
|
28
|
-
tox-envfile = tox_envfile
|
29
|
-
|
30
|
-
[pycodestyle]
|
31
|
-
ignore =
|
32
|
-
E203, # Whitespace before ':',
|
33
|
-
E231, # Missing whitespace after ',',
|
34
|
-
E501, # Line too long,
|
35
|
-
W503, # Line break before binary operator,
|
36
|
-
|
37
|
-
E711,
|
38
|
-
|
39
|
-
E722,
|
40
|
-
|
41
|
-
[egg_info]
|
42
|
-
tag_build =
|
43
|
-
tag_date = 0
|
44
|
-
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|