-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (42 loc) · 1.05 KB
/
setup.py
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
from setuptools import find_packages, setup
setup(
name="mamba-clip",
version="0.1.3.dev48",
description="A package for training mamba vision model and text encoder using CLIP",
author_email="psmyth1994@gmail.com",
license="Apache 2.0",
package_dir={"": "src"},
packages=find_packages("src"),
include_package_data=True,
python_requires=">=3.8.0,<3.12.0",
install_requires=[
"colorlog",
"h5py",
"scikit-learn",
"ipython",
"pandas",
"tqdm",
"ftfy",
"regex",
"fsspec",
# "optuna",
# "ray[tune]",
# "redis",
"mambavision",
"huggingface_hub",
"transformers[sentencepiece]",
"braceexpand",
"kaggle",
"accelerate",
"open_clip_torch",
],
dependency_links=[
"https://pytorch.org/get-started/locally/",
"https://developer.nvidia.com/nccl",
],
entry_points={
"console_scripts": [
"mamba-clip = mamba_clip.cli.main:main",
],
},
)