-
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
e4d1fba
commit ddad309
Showing
3 changed files
with
46 additions
and
23 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[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 = "[email protected]" }, | ||
{ name = "Brendon Hall", email = "[email protected]" }, | ||
{ name = "Jørgen Kvalsvik", email = "[email protected]" } | ||
] | ||
maintainers = [ | ||
{ name = "Robert Leckenby", email = "[email protected]" } | ||
] | ||
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" | ||
|