-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (29 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
38 lines (29 loc) · 918 Bytes
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
[project]
authors = [{ name = "Scientific Python Developers" }]
name = "spec0-action"
requires-python = ">= 3.11"
version = "0.1.0"
dependencies = ["packaging>=25.0"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.feature.update.pypi-dependencies]
spec0-action = { path = ".", editable = true }
[tool.pixi.feature.test.tasks]
test = { cmd = ["pytest", "-vvv"] }
[tool.pixi.feature.schedule.tasks]
generate-schedule = { cmd = ["python", "spec0-verions.py"] }
[tool.pixi.feature.test.dependencies]
pytest = "*"
[tool.pixi.feature.update.dependencies]
tomlkit = ">=0.13.3,<0.14"
[tool.pixi.feature.schedule.dependencies]
pandas = "*"
requests = "*"
[tool.pixi.environments]
dev = ["test", "schedule", "update"]
schedule = ["schedule"]
update = ["update"]