-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (54 loc) · 2 KB
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
[project]
name = "feasibility-data"
version = "0.12.0"
description = "A Data Package for the ON LiMiT feasibility study. The data itself is connected to this Data Package via storage on GenomeDK at Aarhus University, Denmark but is not publicly accessible. The publicly accessible content of this Data Package is the documentation and metadata associated with the data."
authors = [
{ name = "Kristiane Beicher", email = "kris.beicher@clin.au.dk" },
{ name = "Daniel Ibsen", email = "dbi@ph.au.dk" },
{ name = "Luke W. Johnston", email = "lwjohnst@gmail.com" },
{ name = "Signe Kirk Brødbæk", email = "signekb@clin.au.dk" },
{ name = "Marton Vago", email = "marton.vago95@gmail.com" },
{ name = "Joel Ostblom", email = "joel@joelostblom.com" },
]
maintainers = [
{ name = "Kristiane Beicher", email = "kris.beicher@clin.au.dk" },
{ name = "Daniel Ibsen", email = "dbi@ph.au.dk" },
{ name = "Luke W. Johnston", email = "lwjohnst@gmail.com" },
{ name = "Signe Kirk Brødbæk", email = "signekb@clin.au.dk" },
{ name = "Marton Vago", email = "marton.vago95@gmail.com" },
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE-MIT.md"]
requires-python = ">=3.12"
dependencies = [
"polars>=1.42.1",
"pytask>=0.6.0",
"python-dotenv>=1.2.2",
"requests>=2.32.5",
"seedcase-flower>=0.30.1",
"seedcase-sprout>=0.49.7",
]
[project.urls]
homepage = "https://onlimit-study.github.io/feasibility-data"
repository = "https://github.com/onlimit-study/feasibility-data"
issues = "https://github.com/onlimit-study/feasibility-data/issues"
changelog = "https://github.com/onlimit-study/feasibility-data/blob/main/CHANGELOG.md"
[tool.ruff]
extend = ".config/ruff.toml"
[tool.mypy]
python_version = "3.12"
strict = true
[tool.pytask.ini_options]
paths = ["src/feasibility_data"]
task_files = ["task_*.py", "build.py"]
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"mypy>=2.1.0",
"quarto>=0.1.0",
"types-requests>=2.32.4.20260107",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"