-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.37 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
64
65
[project]
name = "pgdtools"
version = "0.1.0"
description = "Read and interact with the presolar grain database with python."
authors = [
{ name = "Reto Trappitsch", email = "[email protected]" }
]
dependencies = [
"iniabu>=1.1.2",
"matplotlib>=3.7.4",
"numpy>=1.26.4",
"scipy>=1.12.0",
"pandas>=2.2.0",
"requests>=2.31.0",
]
readme = "README.md"
requires-python = ">= 3.9"
license = { text = "MIT" }
[project.urls]
Source = "https://github.com/galactic-forensics/pgdtools"
Documentation = "https://pgdtools.readthedocs.io"
[project.optional-dependencies]
maintainer = [
"bibtexparser>=1.4.1",
"openpyxl>=3.1.2",
]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.25",
"mkdocs-jupyter>=0.24.8",
"notebook>=7.2.1",
"ceresfit>=0.3.1",
"mkdocstrings[python]>=0.25.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"hypothesis>=6.98.2",
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.12.0",
"requests-mock>=1.11.0",
"xdoctest>=1.1.5",
]
[tool.rye.scripts]
test_docs = "xdoctest pgdtools"
test_cov = "pytest --cov=pgdtools --cov-report xml"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/pgdtools"]
[tool.pytest]
testpaths = "tests"
addopts = "--cov=pgdtools -v"