-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
69 lines (61 loc) · 1.81 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
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"setuptools-git-versioning",
"cython",
"numpy>=2.0.0.rc1",
]
build-backend = "setuptools.build_meta"
[project]
name = "driftscan"
description = "Transit telescope analysis with the m-mode formalism"
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 = [
"cachetools",
"caput @ git+https://github.com/radiocosmology/caput.git",
"cora @ git+https://github.com/radiocosmology/cora.git",
"click",
"h5py",
"healpy>=1.8",
"mpi4py",
"numpy>=1.24",
"scipy>=0.10",
]
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]
test = ["pytest"]
docs = ["Sphinx", "sphinx_rtd_theme"]
lint = ["black", "pydocstyle"]
[project.urls]
Documentation = "https://radiocosmology.github.io/driftscan"
Repository = "https://github.com/radiocosmology/driftscan"
[project.scripts]
drift-makeproducts = "drift.scripts.makeproducts:cli"
drift-runpipeline = "drift.scripts.runpipeline: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]
"drift.telescope" = ["gmrtpositions.dat"]