-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (73 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
79 lines (73 loc) · 1.78 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
[build-system]
requires = ["setuptools>=69.0", "wheel", "pip>=21.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gas"
dynamic = ["version"]
description = "SN34 on bittensor"
authors = [{ name = "GAS", email = "intern@bitmind.ai" }]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "" }
urls = { homepage = "http://bitmind.ai" }
dependencies = [
"bittensor==9.9.0",
"bittensor-cli",
"pillow==10.4.0",
"substrate-interface==1.7.11",
"numpy==2.0.1",
"pandas==2.3.0",
"torch==2.7.1",
"torchvision==0.22.1",
#"flash-attn>=2.7.0",
"asyncpg==0.30.0",
"httpcore==1.0.7",
"httpx==0.28.1",
"pyarrow==19.0.1",
"ffmpeg-python==0.2.0",
"bitsandbytes==0.45.4",
"black==25.1.0",
"pre-commit==4.2.0",
# "diffusers==0.33.1",
"transformers==4.55.0",
"qwen-vl-utils>=0.0.14",
"scikit-learn==1.7.1",
"av==14.2.0",
"opencv-python==4.11.0.86",
"wandb==0.19.9",
"uvicorn==0.27.1",
"python-multipart==0.0.22",
"peft==0.17.0",
"aiohttp>=3.10.2",
"onnx==1.18.0",
"sympy==1.14.0",
"coloredlogs==15.0.1",
"flatbuffers==25.2.10",
"humanfriendly==10.0",
"hf_xet==1.1.7",
"nest-asyncio==1.6.0",
"python-dotenv==1.0.1",
"accelerate==1.8.1",
"selenium==4.34.0",
"stamina==25.1.0",
"click>=8.0.0",
"datasets==4.0.0",
"async-substrate-interface>=1.5.1",
"ftfy==6.3.1",
"huggingface_hub>=0.17.0",
"gasbench[gpu] @ git+https://github.com/BitMind-AI/gasbench.git@main",
"imagehash>=4.3.1",
"c2pa-python>=0.25.0",
]
[project.scripts]
gascli = "gas.cli:cli"
[tool.setuptools]
packages = { find = { where = [
".",
], exclude = [
"docs*",
"wandb*",
"*.egg-info",
] } }
[tool.setuptools.dynamic]
version = { file = "VERSION" }