-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 1 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "doodads"
version = "0.0.1.dev"
description = "A collection of useful signal processing and astronomy functionality"
readme = "README.md"
authors = [
{ name = "Joseph D. Long", email = "me@joseph-long.com" },
]
dependencies = [
"pytest>=5.4.2",
"numpy>=1.16",
"scipy>=1.2.1",
"matplotlib>=3.1.3",
"astropy>=4.0.1",
"joblib>=0.14.1",
"scikit-image>=0.16.2",
"requests>=2.27.1",
"xconf>=0.0.1",
"tqdm>=4.62.3,<5",
"coloredlogs>=15.0.1,<16",
"ray>=2.7.0",
"projecc>=1.0,<2",
"fsspec",
"pyviewarr>=0.3.3",
"ipykernel>=7.2.0",
]
[project.urls]
Homepage = "https://github.com/joseph-long/doodads"
[project.scripts]
ddx = "doodads.commands:DISPATCHER.main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["doodads*"]
[tool.setuptools.package-data]
"doodads.ref" = ["3.9um_Clio.dat"]
[tool.uv.sources]
projecc = { path = "../projecc", editable = true }