-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.04 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
[project]
name = "gittensor"
version = "5.0.0"
description = "gittensor"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
dependencies = [
"bittensor==10.0.1",
"bittensor-cli==9.17.0",
"bittensor-commit-reveal==0.4.0",
"bittensor-wallet==4.0.0",
"click",
"levenshtein==0.27.3",
"psycopg2-binary==2.9.10",
"python-dotenv==1.2.1",
"pytz==2025.2",
"rich",
"substrate-interface",
"tree-sitter==0.24.0",
"tree-sitter-language-pack==0.7.2",
"wandb==0.21.3",
]
[project.optional-dependencies]
dev = [
"pytest==9.0.0",
"pyright",
"ruff==0.14.10",
"pre-commit>=4.0",
]
debug = [
"debugpy==1.8.11",
"fastapi==0.110.1",
"uvicorn==0.32.0",
]
[project.scripts]
gitt = "gittensor.cli.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "single"
[tool.pytest.ini_options]
testpaths = ["tests"]