-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (47 loc) · 1.62 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 = "bt-decode"
version = "0.3.0a"
description = "A wrapper around the scale-codec crate for fast scale-decoding of Bittensor data structures."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["substrate", "scale", "codec", "bittensor"]
dependencies = ["toml==0.10.0"]
requires-python = ">= 3.9"
authors = [
{name = "Cameron Fairchild", email = "[email protected]"},
{name = "Opentensor Foundation", email = "[email protected]"},
]
maintainers = [
{name = "Cameron Fairchild", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
# Pick your license as you wish
"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",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",]
[project.urls]
Repository = "https://github.com/opentensor/bt-decode"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project.optional-dependencies]
dev = ["black==23.7.0","maturin", "ruff==0.4.7"]
test = [
"bittensor==8.2.0",
"pytest==7.2.0",
"pytest-asyncio==0.23.7",
"pytest-mock==3.12.0",
"pytest-split==0.8.0",
"pytest-xdist==3.0.2",
"pytest-rerunfailures==10.2",
"ddt==1.6.0",
]