-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 1011 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
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "panst3r"
version = "0.2.0"
description = "Official code of PanSt3R: Multi-view Consistent Panoptic Segmentation"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "NAVER LABS EUROPE", email = "info@naverlabs.com" }]
dependencies = [
"must3r @ git+https://github.com/naver/must3r.git",
"transformers>=4.50.0",
"sentencepiece",
"pyrender @ git+https://github.com/lojzezust/pyrender.git"
]
# [project.optional-dependencies]
# full = [
# "must3r[full] @ git+https://github.com/naver/must3r.git@must3r_setup",
# ]
# Optional console scripts: `panst3r` runs main:cli()
# [project.scripts]
# panst3r = "panst3r.main:cli"
[project.urls]
Homepage = "https://github.com/naver/panst3r"
Issues = "https://github.com/naver/panst3r/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/panst3r"]
[tool.hatch.metadata]
allow-direct-references = true