-
Notifications
You must be signed in to change notification settings - Fork 132
/
pyproject.toml
63 lines (56 loc) · 1.67 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "welly"
dynamic = ["version"]
authors = [{ name = "The Welly Authors", email = "[email protected]" }]
description = "Tools for making and managing well data."
readme = "README.md"
readme-content-type = "text/markdown"
homepage = "https://github.com/agilescientific/welly"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"scipy",
"pandas",
"matplotlib",
"lasio",
"striplog",
"tqdm",
"wellpathpy",
"requests"
]
[project.optional-dependencies]
docs = ["sphinx", "sphinxcontrib-apidoc", "myst_nb", "furo"]
test = ["pytest", "pytest-cov", "pytest-mpl"]
dev = ["build", "pytest", "pytest-cov", "pytest-mpl", "sphinx", "sphinxcontrib-apidoc", "myst_nb", "furo"]
[tool.hatch.metadata]
packages = ["welly"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--cov=welly",
"--cov-config=pyproject.toml",
"--mpl",
"--mpl-baseline-path=tests/baseline",
]
testpaths = ["tests"]
[tool.setuptools_scm]
write_to = "welly/_version.py"
git_describe_command = "git describe --dirty --tags --long --match v* --first-parent"