-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
executable file
·42 lines (36 loc) · 1.06 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
[build-system]
requires = ["setuptools>=57.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jetson-examples"
version = "0.2.2"
authors = [{ name = "luozhixin", email = "[email protected]" }]
description = "Running Gen AI models and applications on NVIDIA Jetson devices with one-line command"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"llama",
"llava",
"gpt",
"llm",
"nvidia",
"jetson",
"multimodal",
"jetson orin",
]
[project.scripts]
reComputer = "reComputer.main:run_script"
[project.urls]
Homepage = "https://github.com/Seeed-Projects/jetson-examples"
Issues = "https://github.com/Seeed-Projects/jetson-examples/issues"
# Tools settings -------------------------------------------------------------------------------------------------------
[tool.setuptools.packages.find]
namespaces = true
where = ["."]
[tool.setuptools.package-data]
"reComputer.scripts" = ["**/*"]