-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
72 lines (64 loc) · 1.75 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
66
67
68
69
70
71
72
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"setuptools-git-versioning",
"cython",
"numpy>=2.0.0rc1",
]
build-backend = "setuptools.build_meta"
[project]
name = "cora"
description = "Simulation and modelling of low frequency radio skies"
license = { file = "LICENSE" }
authors = [
{ name = "The CHIME Collaboration", email = "[email protected]" }
]
maintainers = [
{ name = "Liam Gray", email = "[email protected]" },
{ name = "Don Wiebe", email = "[email protected]" }
]
dynamic = ["readme", "version"]
requires-python = ">=3.9"
dependencies = [
"click",
"cython",
"h5py",
"healpy>=1.15",
"numpy>=1.24",
"scipy>=0.10",
"skyfield",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
lss = [
"draco @ git+https://github.com/radiocosmology/draco.git",
"hankel",
"hankl",
"pyfftlog",
]
docs = ["Sphinx", "sphinx_rtd_theme"]
lint = ["black"]
test = ["pytest"]
[project.urls]
Repository = "https://github.com/radiocosmology/cora"
[project.scripts]
cora-makesky = "cora.scripts.makesky:cli"
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
"cora.signal" = ["data/ps_z1.5.dat", "data/corr_z1.5.dat", "data/ps*.h5"]
"cora.foreground" = ["data/skydata.npz", "data/combinedps.dat"]