forked from GEMPACKsoftware/HARPY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (30 loc) · 928 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
[tool.poetry]
name = "harpy3"
version = "0.3.4"
description = "Library for reading/modifying/writing header-array (HAR) files."
readme = "README.md"
authors = ["Florian Schiffmann <florian.schiffmann@vu.edu.au>",
"Lyle Collins <Lyle.Collins@csiro.au>",
"Sam West <sam.west@csiro.au>"
]
license = "GPLv3"
packages = [{ include = "harpy/**/*.py" }]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
numpy = "^1.21.2"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "csiroenergy"
url = "https://pkgs.dev.azure.com/csiro-energy/csiro-energy/_packaging/csiro-python-packages/pypi/simple/"
priority = "supplemental"
[project.license]
text = "GPLv3"
[project.urls]
Homepage = "https://github.com/GEMPACKsoftware/HARPY"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.2.2"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"