generated from opentensor/bittensor-subnet-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.46 KB
/
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
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
[project]
name = "storb"
version = "0.2.0"
description = "An object storage subnet on the Bittensor network"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"aiofiles>=24.1.0",
"aiosqlite>=0.20.0",
"colorlog>=6.9.0",
"cryptography>=44.0.0",
"dynaconf>=3.2.6",
"fastapi>=0.112.0",
"fiber @ git+https://github.com/fr34kcoders/fiber.git",
"httpx>=0.28.1",
"storb-kademlia @ git+https://github.com/fr34kcoders/storb-kademlia.git",
"numpy==2.0.2",
"pydantic>=2.9.2",
"python-multipart>=0.0.19",
"rich>=13.9.4",
"starlette==0.37.2",
"substrate-interface>=1.7.10",
"uvicorn==0.30.5",
"zfec>=1.6.0.0",
"gmpy2>=2.2.1",
]
[dependency-groups]
dev = [
"debugpy>=1.8.9",
"py-spy>=0.4.0",
"pytest>=8.3.4",
"ruff>=0.8.2",
]
[tool.ruff]
exclude = [
".git",
".pyenv",
".ruff_cache",
".venv",
".vscode",
"venv",
]
indent-width = 4
[tool.ruff.lint]
fixable = ["ALL"]
ignore = ["E501"]
select = ["F", "E", "W", "N", "I", "A", "PLC", "PLE", "PLW"]
[tool.ruff.format]
indent-style = "space"
line-ending = "lf"
quote-style = "double"
[tool.setuptools]
packages = ["storb"]
[tool.setuptools.package-dir]
storb = "storb"