-
Notifications
You must be signed in to change notification settings - Fork 28
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 build specification
- Loading branch information
1 parent
4d67821
commit d02f58e
Showing
6 changed files
with
49 additions
and
26 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
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[build-system] | ||
requires = ["hatchling>=1.0", "hatch-vcs"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "wellpathpy" | ||
dynamic = ["version"] | ||
description = "Light package to load well deviations" | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Robert Leckenby", email = "fracgeol@gmail.com" }, | ||
{ name = "Jørgen Kvalsvik", email = "j@lambda.is" }, | ||
{ name = "Brendon Hall", email = "brendon.hall@gmail.com" }, | ||
] | ||
maintainers = [ | ||
] | ||
license = { file = "LICENSE" } | ||
platforms = "any" | ||
|
||
dependencies = [ | ||
"numpy >=1.10", | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest", | ||
"hypothesis", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/Zabamund/wellpathpy" | ||
"Repository" = "https://github.com/Zabamund/wellpathpy" | ||
|
||
[tool.hatch.version] | ||
source = "vcs" | ||
|
||
[tool.hatch.metadata] | ||
license = "LGPL-3.0" | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests"] | ||
|
||
[tool.setuptools_scm] | ||
version_scheme = "post-release" | ||
|
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ numpy | |
setuptools-scm | ||
hypothesis | ||
wheel | ||
build |