forked from nasa-jpl/visual-perception-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
68 lines (58 loc) · 1.72 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
[project]
name = "vp_engine"
version = "0.1.0"
description = "Visual Perception Engine"
requires-python = ">=3.10.12"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Jakub Z. Lucki" },
{ name = "Jonathan Becktor", email = "jonathan.becktor@jpl.nasa.gov" },
{ name = "Shehryar Khattak", email = "skhattak@jpl.nasa.gov" },
{ name = "Rob Royce", email = "rob.royce@jpl.nasa.gov" },
]
maintainers = [
{ name = "Rob Royce", email = "rob.royce@jpl.nasa.gov" },
{ name = "Shehryar Khattak", email = "skhattak@jpl.nasa.gov" },
]
keywords = [
"Robotics", "Data Science", "Machine Learning",
"Data Engineering", "Data Infrastructure", "Data Analysis"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"onnxruntime==1.21.0",
"onnx_graphsurgeon==0.5.6",
"onnx==1.17.0",
"torch2trt==0.5.0",
"torch>=2.4.0",
"tensorrt==10.4.0",
"torchvision>0.19.0",
"cuda-python>=12.6",
"numpy>=1.26.4",
"setuptools"
]
[project.urls]
Homepage = "https://github.com/nasa-jpl/visual-perception-engine"
Issues = "https://github.com/nasa-jpl/visual-perception-engine/issues"
[project.optional-dependencies]
tests = ["pytest"]
[build-system]
requires = ["setuptools>=78",
"packaging>=24.2",
"wheel>=0.38",
"pip>=23"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
vp_engine = ["schemas/*.json"]