-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 996 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 996 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "doin-node"
version = "0.1.0"
description = "P2P node for the Decentralized Optimization Network (DON)"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Harvey" },
]
dependencies = [
"doin-core>=0.1.0",
"aiohttp>=3.9",
"aiosqlite>=0.20",
"psutil>=5.9",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-asyncio>=0.21",
"mypy>=1.0",
"ruff>=0.1",
]
[project.scripts]
doin-node = "doin_node.cli:main"
[project.urls]
Homepage = "https://github.com/harveybc/doin-node"
Repository = "https://github.com/harveybc/doin-node"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py310"
line-length = 88
[tool.mypy]
python_version = "3.10"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"