-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (80 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
87 lines (80 loc) · 2.06 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["uniception", "scripts"]
[project]
name = "uniception"
version = "0.1.7"
description = "Generalizable Perception Stack for 3D, 4D, spatial AI and scene understanding"
readme = "README.md"
authors = [
{name = "AirLab", email = "airlab-dev@lists.andrew.cmu.edu"}
]
license = {text = "BSD 3-Clause"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["computer-vision", "3d-vision", "spatial-ai", "perception", "deep-learning", "pytorch"]
dependencies = [
"numpy",
"torch",
"torchvision",
"torchaudio",
"jaxtyping",
"matplotlib",
"Pillow",
"scikit-learn",
"einops",
"rerun-sdk",
"minio",
"torchmetrics",
"termcolor",
"timm",
]
[project.urls]
"Homepage" = "https://github.com/castacks/UniCeption"
"Bug Tracker" = "https://github.com/castacks/UniCeption/issues"
"Documentation" = "https://github.com/castacks/UniCeption/blob/main/README.md"
[project.optional-dependencies]
xformers = ["xformers"]
dev = [
"black",
"isort",
"pre-commit",
"pytest",
"requests",
]
all = ["xformers", "black", "isort", "pre-commit", "pytest", "requests"]
[project.scripts]
uniception-download-checkpoints = "scripts.download_checkpoints:main"
uniception-validate = "scripts.validate_installation:main"
uniception-prepare-offline = "scripts.prepare_offline_install:main"
uniception-check-deps = "scripts.check_dependencies:main"
uniception-install-croco = "scripts.install_croco_rope:main"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| cuda
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 120