-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.39 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "apiary"
version = "0.5.1"
description = "A user-friendly tool for seamless interaction with the CoopHive protocol, enabling decentralized execution of computational workloads and management of payments and storage."
authors = [
{ name = "Levi Rybalov" },
{ name = "Matteo Manzi" },
{ name = "疒奀" },
{ name = "Aayushi Jain" }
]
requires-python = ">=3.12"
readme = "README.md"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
"pip>=24.2",
"click>=8.0,<8.1.4",
"docker>=7.1.0,<7.2.0",
"colorlog>=6.6.0,<6.9.0",
"uvicorn>=0.30.0,<0.31.0",
"fastapi>=0.112.0,<0.115.0",
"lighthouseweb3>=0.1.0,<0.2.0",
"readwrite>=0.6.0, <1.0",
"python-dotenv>=1.0.0,<2.0",
"ipykernel>=6.29.0,<7.0.0",
"matplotlib>=3.9",
]
packages = [{include = "apiary"}]
[project.scripts]
"apiary" = "apiary.__main__:cli"
[project.optional-dependencies]
dev = [
"pre-commit>=4.0.0,<4.1.0",
"isort[colors]>=5.11.0,<5.12.0",
"ruff>=0.6.0, < 1.0.0",
"pydocstyle>=6.3.0,<6.4.0",
"pytest>=8.3.0,<8.4.0",
"pydeps>=2.0.0,<2.1.0"
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "apiary.apiars"