Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure builds are reproducible. #28

Merged
merged 1 commit into from
Jan 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "goodconf"
description = "Load configuration variables from a file or environment"
readme = "README.rst"
requires-python = ">=3.7"
authors = [
{name = "Peter Baumgartner", email = "brett@python.org"}
]
Expand Down Expand Up @@ -40,13 +41,13 @@ maintainer = ["zest.releaser[recommended]"]
[project.urls]
homepage = "https://github.com/lincolnloop/goodconf/"

[tools.setuptools]
zip-safe = false

[tool.setuptools_scm]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]

[tool.distutils.bdist_wheel]
universal = true
[tool.hatch.version]
source = "vcs"

[tool.isort]
profile = "black"
Expand All @@ -57,5 +58,5 @@ known_first_party = "goodconf"
addopts = "--cov --cov-branch"

[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"