-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 933 Bytes
/
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
43
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sensors_tools"
authors = [{name = "David Morilla-Cabello", email = "[email protected]"}]
readme="README.md"
requires-python=">=3.7.0"
version = "0.1.0"
dependencies=[
"tqdm",
"numpy",
"matplotlib",
"Pillow",
"torchtyping",
"pyyaml",
"einops",
"ftfy",
"gdown",
"regex",
# Trident dependencies (check versions)
"fsspec==2023.9.0",
"huggingface_hub==0.23.0",
"nltk==3.8.1",
"opencv_python==4.6.0.66",
"openpyxl==3.1.2",
"pycocotools==2.0.7",
"safetensors==0.4.3",
"scipy==1.14.0",
"scikit-image",
"timm==0.4.12",
"transformers==4.37.2",
]
# TODO: Add optional dependency rospkg
# Indicate in readme: pip3 install torch torchvision torchaudio
[tool.setuptools]
packages = ["sensors_tools"]
# black
[tool.black]
line-length = 120