Skip to content

Commit

Permalink
use pyproject.toml for build specification
Browse files Browse the repository at this point in the history
  • Loading branch information
frank1010111 committed Nov 27, 2024
1 parent e4d1fba commit ddad309
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 23 deletions.
46 changes: 46 additions & 0 deletions pyproject.toml
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"

2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

21 changes: 0 additions & 21 deletions setup.py

This file was deleted.

0 comments on commit ddad309

Please sign in to comment.