-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (63 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
76 lines (63 loc) · 1.89 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
[project]
name = "async-substrate-interface"
version = "2.0.2"
description = "Asyncio library for interacting with substrate. Mostly API-compatible with py-substrate-interface"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["substrate", "development", "bittensor"]
dependencies = [
"wheel",
"aiosqlite>=0.21.0,<1.0.0",
"cyscale>=0.3.1,<1.0.0",
"websockets>=14.1",
"xxhash",
]
requires-python = ">=3.10,<3.15"
authors = [
{ name = "Opentensor Foundation" },
{ name = "BD Himes", email = "b@latent.to" }
]
maintainers = [
{ name = "Latent Holdings" },
{ name = "BD Himes", email = "b@latent.to" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Repository = "https://github.com/opentensor/async-substrate-interface/"
[tool.setuptools.packages.find]
exclude = ["tests*"]
[tool.setuptools.package-data]
async_substrate_interface = ["py.typed"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "module"
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["setuptools>=70.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"pytest==8.3.5",
"pytest-asyncio==0.26.0",
"pytest-mock==3.14.0",
"pytest-split==0.10.0",
"pytest-xdist==3.6.1",
"pytest-rerunfailures>=14.0",
"bittensor-wallet>=4.0.0",
"pytest-forked",
"mypy>=1.20.1",
"ruff==0.11.5",
]