-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
45 lines (36 loc) · 916 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[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"