-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'synthetics2021' of https://github.com/hyperiongeo/welly …
…into synthetics2021
- Loading branch information
Showing
12 changed files
with
113 additions
and
105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,62 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=48", | ||
"setuptools_scm[toml] >= 4, <6", | ||
"setuptools_scm_git_archive", | ||
"wheel >= 0.29.0", | ||
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", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
testpaths = ["tests"] | ||
|
||
[tool.setuptools_scm] | ||
write_to = "welly/_version.py" | ||
|
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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