-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.74 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
[project]
name = "allways"
version = "0.1.0"
description = "Allways - Universal Transaction Layer: Trustless cross-chain swaps on Bittensor Subnet 7"
license = "MIT"
requires-python = ">=3.10,<3.15"
authors = [{ name = "Allways" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"bittensor==10.1.0",
"bittensor-cli==9.17.0",
"bittensor-commit-reveal==0.4.0",
"bittensor-wallet==4.0.0",
"wandb==0.21.3",
"python-dotenv==1.2.1",
"substrate-interface",
"requests",
"bitcoin-message-tool",
"click",
"rich",
"embit",
"base58",
"bech32",
"pycryptodome",
"numpy",
]
[project.scripts]
alw = "allways.cli.main:main"
[dependency-groups]
dev = [
"pre-commit>=4.2.0",
"pytest>=9.0.0",
"ruff>=0.14.10",
]
# bitcoin-message-tool incorrectly lists pytest as a runtime dependency
[tool.uv]
override-dependencies = ["pytest>=9.0.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["allways"]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "single"