-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
85 lines (77 loc) · 2.03 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "allora_sdk"
version = "0.2.0"
dependencies = [
"aiohttp",
"annotated-types==0.7.0",
"cachetools==5.5.0",
"certifi==2024.12.14",
"chardet==5.2.0",
"charset-normalizer==3.4.1",
"colorama==0.4.6",
"distlib==0.3.9",
"filelock==3.16.1",
"idna==3.10",
"packaging==24.2",
"platformdirs==4.3.6",
"pluggy==1.5.0",
"pydantic==2.10.4",
"pydantic_core==2.27.2",
"pyproject-api==1.8.0",
"requests==2.32.3",
"tox==4.23.2",
"typing_extensions==4.12.2",
"urllib3==2.3.0",
"virtualenv==20.28.1",
]
authors = [
{ name="spooktheducks", email="[email protected]" },
]
description = "Allora Network SDK"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"tox",
"pytest",
"pytest-asyncio",
"fastapi",
"starlette",
]
[project.urls]
Homepage = "https://github.com/allora-network/allora-sdk-py"
Issues = "https://github.com/allora-network/allora-sdk-py/issues"
"Allora Network" = "https://allora.network"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/allora_sdk"]
[tool.tox]
requires = ["tox>=4.19"]
env_list = ["lint", "type", "3.13", "3.12", "3.11", "3.10", "3.9", "3.8"]
[tool.tox.env_run_base]
description = "Run test under {base_python}"
deps = [
"pytest>=8",
"pytest-asyncio",
"pytest-sugar",
"fastapi",
"starlette",
"httpx",
]
commands = [["pytest", { replace = "posargs", default = ["tests"], extend = true }]]
[tool.tox.env.type]
description = "run type check on code base"
deps = ["mypy==1.11.2", "types-cachetools>=5.5.0.20240820", "types-chardet>=5.0.4.6"]
commands = [["mypy", { replace = "posargs", default = ["src", "tests"], extend = true} ]]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"asyncio: mark test as async test",
]