-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1 KB
/
pyproject.toml
File metadata and controls
47 lines (44 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xmera"
version = "0.1.0"
description = "Xmera: Flexible, Fast, and Reconfigurable Space Simulation Framework"
requires-python = ">=3.9, <3.15"
dependencies = [
"bokeh",
"dask==2024.8.0; python_version < '3.10'",
"dask==2024.12; python_version >= '3.10'",
"datashader==0.16.3",
"delimited-protobuf==1.0.0",
"holoviews==1.19.1",
"hvplot==0.10.0",
"matplotlib",
"numpy<2.0.0; python_version < '3.14'",
"numpy>=2.0.0; python_version >= '3.14'",
"opencv-contrib-python",
"opencv-python",
"pandas",
"param==2.1.1",
"parse>=1.18.0",
"Pillow",
"protobuf==3.19.1",
"spiceypy",
"tqdm"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-html",
"pytest-xdist"
]
docs = [
"breathe",
"docutils",
"recommonmark",
"sphinx==5.0.2",
"sphinx_rtd_theme==0.5.1"
]
[tool.setuptools.packages.find]
where = ["dist"]