forked from DurhamDecLab/ARBInterp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1.29 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
[tool.poetry]
name = "qinterp"
version = "1.8.1"
description = "Python tools for interpolating 3D or 4D fields"
authors = ["Paul Walker", "Carmelo Mordini"]
license = "GNU General Public License v3.0"
readme = "README.md"
packages = [
{ include = "qinterp", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.7,<3.12"
numpy = "^1.21.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
pytest-cov = "^3.0.0"
Sphinx = "^4.4.0"
myst-nb = "^0.13.2"
sphinx-autoapi = "^1.8.4"
sphinx-rtd-theme = "^1.0.0"
scipy = "^1.9.1"
ARBInterp = {git = "https://github.com/DurhamDecLab/ARBInterp.git"}
[tool.semantic_release]
version_variable = "pyproject.toml:version" # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"