-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.66 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
[project]
name = "async-substrate-interface"
version = "1.6.3"
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",
"bt-decode==v0.8.0",
"scalecodec~=1.2.11",
"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.package-data]
async_substrate_interface = ["py.typed"]
[build-system]
requires = ["setuptools~=70.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"bittensor",
"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==10.2",
"bittensor-wallet>=4.0.0",
"pytest-forked"
]