Skip to content

Commit 267fd3c

Browse files
github-actions[bot]seanh
authored andcommitted
Apply updates from cookiecutter
This automated commit applies the latest updates from our cookiecutters [1] to this repo. [1]: https://github.com/hypothesis/cookiecutters
1 parent dec059c commit 267fd3c

File tree

6 files changed

+26
-32
lines changed

6 files changed

+26
-32
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"python-dotenv",
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[project.entry-points.tox]
2+
tox-envfile = "tox_envfile"

.cookiecutter/includes/setuptools/entry_points

Lines changed: 0 additions & 2 deletions
This file was deleted.

.cookiecutter/includes/setuptools/install_requires

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,31 @@
22
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
33
build-backend = "setuptools.build_meta"
44

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"
524
[tool.setuptools_scm]
625

26+
27+
[project.entry-points.tox]
28+
tox-envfile = "tox_envfile"
29+
730
[tool.pytest.ini_options]
831
addopts = "-q"
932
filterwarnings = [

setup.cfg

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,3 @@
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-
301
[pycodestyle]
312
ignore =
323
# Disable pycodestyle errors and warnings that we don't care about because

0 commit comments

Comments
 (0)