Skip to content

Commit

Permalink
Apply updates from cookiecutter
Browse files Browse the repository at this point in the history
This automated commit applies the latest updates from our cookiecutters [1] to
this repo.

[1]: https://github.com/hypothesis/cookiecutters
  • Loading branch information
github-actions[bot] authored and seanh committed Jan 21, 2025
1 parent dec059c commit 267fd3c
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 32 deletions.
1 change: 1 addition & 0 deletions .cookiecutter/includes/pyproject.toml/dependencies
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"python-dotenv",
2 changes: 2 additions & 0 deletions .cookiecutter/includes/pyproject.toml/tail
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[project.entry-points.tox]
tox-envfile = "tox_envfile"
2 changes: 0 additions & 2 deletions .cookiecutter/includes/setuptools/entry_points

This file was deleted.

1 change: 0 additions & 1 deletion .cookiecutter/includes/setuptools/install_requires

This file was deleted.

23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,31 @@
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[project]
dynamic = ["version"]
name = "tox-envfile"
description = "Load env files in your tox envs."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
]
requires-python = ">=3.9"
dependencies = [
"python-dotenv",
]

[project.urls]
Repository = "https://github.com/hypothesis/tox-envfile"
Issues = "https://github.com/hypothesis/tox-envfile/issues"
Changelog = "https://github.com/hypothesis/tox-envfile/releases"
[tool.setuptools_scm]


[project.entry-points.tox]
tox-envfile = "tox_envfile"

[tool.pytest.ini_options]
addopts = "-q"
filterwarnings = [
Expand Down
29 changes: 0 additions & 29 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,32 +1,3 @@
[metadata]
name = tox-envfile
description = Load env files in your tox envs.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/hypothesis/tox-envfile
project_urls =
Bug Tracker = https://github.com/hypothesis/tox-envfile/issues
Changelog = https://github.com/hypothesis/tox-envfile/releases
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Intended Audience :: Developers

[options]
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
python-dotenv

[options.packages.find]
where = src

[options.entry_points]
tox =
tox-envfile = tox_envfile

[pycodestyle]
ignore =
# Disable pycodestyle errors and warnings that we don't care about because
Expand Down

0 comments on commit 267fd3c

Please sign in to comment.