-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (64 loc) · 1.9 KB
/
setup.py
File metadata and controls
65 lines (64 loc) · 1.9 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
from setuptools import setup, find_packages
setup(
name="task_aware_sam_lora",
version="0.1.0",
description=(
"A hypernetwork that generates task‑specific LoRA adapters "
"for SAM’s mask decoder based on textual prompts"
),
author="Yash Thube",
author_email="thubeyash09@gmail.com",
url="https://github.com/thubZ09/task-aware-sam-lora",
license="MIT",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.8",
install_requires=[
"torch>=2.0.0",
"torchvision>=0.15.0",
"numpy>=1.21.0",
"Pillow>=9.0.0",
#segment-anything must be installed via git:
# pip install git+https://github.com/facebookresearch/segment-anything.git
"opencv-python>=4.5.0",
"albumentations>=1.3.0",
"transformers>=4.25.0",
"sentence-transformers>=2.2.0",
"pycocotools>=2.0.6",
"datasets>=2.8.0",
"pandas>=1.5.0",
"wandb>=0.13.0",
"tqdm>=4.64.0",
"omegaconf>=2.3.0",
"matplotlib>=3.6.0",
"seaborn>=0.11.0",
"plotly>=5.11.0",
],
extras_require={
"dev": [
"jupyter>=1.0.0",
"ipywidgets>=8.0.0",
"notebook>=6.5.0",
"rich>=12.0.0",
"loguru>=0.6.0",
"einops>=0.6.0",
"timm>=0.6.0",
"scikit-learn>=1.1.0",
]
},
entry_points={
"console_scripts": [
"tasl-train=train:main",
"tasl-demo=demo:main",
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)