-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 815 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "leads-jarvis"
version = "0.0.1"
description = "Jarvis Extension for LEADS"
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Project Neura", email = "central@projectneura.org" }
]
dependencies = ["leads>=0.9.6a0", "torch", "torchvision", "timm", "segment-anything", "requests", "rich", "ultralytics", "mmseg"]
[tool.hatch.build.targets.sdist]
only-include = ["leads_jarvis"]
[tool.hatch.build.targets.wheel]
packages = ["leads_jarvis"]
[project.urls]
Homepage = "https://leads.projectneura.org"
Documentation = "https://leads-docs.projectneura.org"
Repository = "https://github.com/ProjectNeura/LEADS-Jarvis"
[project.gui-scripts]
leads-jarvis = "leads_jarvis:__entry__"