forked from crynux-ai/crynux-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 1.25 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
[build-system]
requires = ["setuptools", "setuptools-golang"]
build-backend = "setuptools.build_meta"
[project]
name = "crynux-node"
authors = [{ name = "iwehf", email = "[email protected]" }]
description = "Crynux Network Node for training and inferencing"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"celery[redis]~=5.3.1",
"pyyaml~=5.3.1",
"web3~=6.17.2",
"anyio~=3.7.1",
"sqlalchemy[asyncio]~=2.0.20",
"aiosqlite~=0.19.0",
"fastapi~=0.101.1",
"hypercorn~=0.14.4",
"httpx~=0.24.1",
"pydantic~=2.2.1",
"pydantic-settings~=2.0.3",
"importlib-resources~=6.0.0",
"python-multipart==0.0.6",
"tenacity~=8.2.3",
"psutil~=5.9.8",
"eth-rlp==1.0.1",
]
version = "2.0.6"
[tool.setuptools.packages.find]
where = ["src"]
include = ["crynux_server*", "crynux_worker*"]
[tool.setuptools.package-data]
"crynux_server.contracts.abi" = ["*.json"]
[project.optional-dependencies]
test = ["pytest~=7.4.0", "Pillow", "web3[tester]"]
app = [
"pyinstaller~=6.5.0",
"PyQt6-WebEngine~=6.6.0",
"qasync~=0.27.1",
]
all = [
"crynux-node[app,test]"
]
[tool.pytest.ini_options]
pythonpath = [
".", "src",
]