-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 1.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "stimela"
version = "2.1.4"
description = "Framework for system agnostic pipelines for (not just) radio interferometry"
authors = [
{ name = "Oleg Smirnov and RATT", email = "osmirnov@gmail.com" },
{ name = "Sphesihle Makhathini", email = "sphemakh@gmail.com" },
]
requires-python = ">=3.9,<3.14"
readme = "README.rst"
license = "GPL-2.0-only"
license-files = ["LICENSE"]
dependencies = [
"munch>=2.5.0,<3",
"omegaconf~=2.1",
"click>=8.1.3,<9",
"pyparsing>=3.0.9,<4",
"pydantic>=1.10.2,<2",
"psutil>=5.9.3,<6",
"rich>=13.7.0,<14",
"dill>=0.3.6,<0.4",
"typeguard>=4.2.1,<5",
"uritools>=5.0.0,<6",
"python-benedict>=0.34.1,<0.35",
"networkx>=3.0.0",
]
[project.scripts]
stimela = "stimela.main:cli"
[dependency-groups]
tests = [
"pytest>=7.1.3,<8",
"flake8",
]
docs = [
"Sphinx>=5.3.0,<6",
"sphinx-copybutton>=0.5.0,<0.6",
"furo>=2022.9.15,<2023",
"docutils>=0.19,<1.0"
]
dev = [
"pre-commit>=4.3.0",
"ruff>=0.12.9",
]
[tool.uv]
default-groups = [
"tests",
"docs",
]
[tool.hatch.build.targets.sdist]
include = [
"stimela",
"scabha",
"tests/stimela_tests",
"tests/scabha_tests",
"tests",
]
[tool.hatch.build.targets.wheel]
include = [
"stimela",
"scabha",
"tests/stimela_tests",
"tests/scabha_tests",
"tests",
]
[tool.hatch.build.targets.wheel.sources]
"tests/stimela_tests" = "stimela_tests"
"tests/scabha_tests" = "scabha_tests"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"