-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.63 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "ch_util"
authors = [
{name = "The CHIME Collaboration", email = "[email protected]"}
]
description = "Utilities for CHIME"
requires-python = ">=3.9"
dynamic = ["readme", "version"]
license = {file = "LICENSE"}
dependencies = [
"caput[compression] @ git+https://github.com/radiocosmology/caput.git",
"ch_ephem @ git+https://github.com/chime-experiment/ch_ephem.git",
"chimedb @ git+https://github.com/chime-experiment/chimedb.git",
"chimedb.data_index @ git+https://github.com/chime-experiment/chimedb_di.git",
"chimedb.dataflag @ git+https://github.com/chime-experiment/chimedb_dataflag.git",
"chimedb.dataset @ git+https://github.com/chime-experiment/chimedb_dataset.git",
"bitshuffle",
"h5py",
"matplotlib",
"mpi4py",
"networkx >= 2.0",
"numpy >= 1.24",
"peewee >= 3.14.1",
"scipy",
"skyfield >= 1.10",
"tabulate"
]
[project.optional-dependencies]
chimedb_config = [
"chimedb.config @ git+ssh://[email protected]/chime-experiment/chimedb_config.git"
]
doc = [
"mock",
"numpydoc",
"PyYAML",
"Sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-katex"
]
test = [
"pytest >= 7.0"
]
[tool.ruff]
lint.select = ["E", "F", "UP", "NPY", "BLE", "C4", "RET"]
lint.ignore = [
"UP007" # Can't convert to "X | Y" type hinting until 3.10
]
[tool.setuptools.package-data]
"ch_util.catalogs" = ["*.json"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools-git-versioning]
enabled = true