-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.41 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
[project]
name = "async-substrate-interface"
version = "1.0.0rc3"
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",
"asyncstdlib~=3.13.0",
"bittensor-wallet>=2.1.3",
"bt-decode==0.4.0",
"scalecodec==1.2.11",
"websockets>=14.1",
"xxhash"
]
requires-python = ">=3.9,<3.13"
authors = [
{ name = "Opentensor Foundation" },
{ name = "BD Himes", email = "[email protected]" }
]
maintainers = [
{ name = "Opentensor Foundation", email = "[email protected]" },
{ name = "BD Himes", email = "[email protected]" }
]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Repository = "https://github.com/opentensor/async-substrate-interface/"
[build-system]
requires = ["setuptools~=70.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = ["pytest"]