-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (90 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (90 loc) · 1.96 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "arraydataengine"
version = "0.2.0"
authors = [
{ name="Alex Moran", email="salsicha@gmail.com" },
]
description = "NumPy-first streaming engine for heterogeneous robotics sensor data: ROS bags, image sequences, DEM tiles, and TileDB-backed buffers"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"robotics",
"sensor-data",
"point-cloud",
"rosbag",
"ros2",
"numpy",
"tiledb",
"dem",
"lidar",
]
dependencies = [
"numpy",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
]
[project.optional-dependencies]
dem = [
"rasterio",
"requests",
]
dev = [
"pytest",
]
image = [
"opencv-python",
"scikit-image",
"scipy",
]
ml = [
"pycocotools",
"tensorboard",
"torch",
"torchvision",
"ultralytics",
"wandb",
]
notebook = [
"jupyterlab",
]
ros = [
"navpy",
"rosbags",
"rosbags-dataframe",
"rosbags-image",
"transforms3d",
]
tiledb = [
"tiledb",
"tiledb-ml",
]
visualization = [
"ipython",
"matplotlib",
"open3d",
"Pillow",
]
[project.scripts]
ade = "ade.cli:main"
[project.urls]
Homepage = "https://github.com/salsicha/ArrayDataEngine"
Repository = "https://github.com/salsicha/ArrayDataEngine"
Issues = "https://github.com/salsicha/ArrayDataEngine/issues"
Changelog = "https://github.com/salsicha/ArrayDataEngine/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["ade*", "ArrayDataEngine*"]