-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
pyproject.toml
for setuptools config (#55)
Use `pyproject.toml` for setuptools config
- Loading branch information
1 parent
1e877cd
commit 2be9826
Showing
6 changed files
with
31 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ venv/ | |
# Python packaging | ||
build/ | ||
dist/ | ||
src/diepvries.egg-info/ | ||
*.egg-info/ | ||
|
||
# Python tools | ||
.tox/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,33 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]~=6.0"] | ||
requires = ["setuptools>=64", "wheel", "setuptools_scm[toml]>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "diepvries" | ||
dynamic = ["version"] | ||
description = "diepvries - Picnic Data Vault framework" | ||
readme = {file = "README.md", content-type = "text/markdown"} | ||
keywords = ["data vault"] | ||
license = {file = "LICENSE"} | ||
authors = [{name = "Picnic Technologies"}] | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = ["snowflake-connector-python[secure-local-storage]~=3.0"] | ||
requires-python = ">= 3.8" | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest~=6.2"] | ||
dev = ["pytest~=6.2", "tox", "pre-commit"] | ||
|
||
[project.urls] | ||
Documentation = "https://diepvries.picnic.tech/" | ||
"Source Code" = "https://github.com/PicnicSupermarket/diepvries" | ||
"Issue Tracker" = "https://github.com/PicnicSupermarket/diepvries/issues" | ||
|
||
[tool.setuptools_scm] | ||
tag_regex = "^diepvries/(?P<version>[0-9\\.]+)$" # backslash needs to be escaped in TOML | ||
local_scheme = "no-local-version" |