chore: initialize monorepo with project scaffolding, configs, and CI setup
This commit is contained in:
30
apps/miner-node/pyproject.toml
Normal file
30
apps/miner-node/pyproject.toml
Normal file
@ -0,0 +1,30 @@
|
||||
[tool.poetry]
|
||||
name = "aitbc-miner-node"
|
||||
version = "0.1.0"
|
||||
description = "AITBC miner node daemon"
|
||||
authors = ["AITBC Team"]
|
||||
packages = [
|
||||
{ include = "aitbc_miner", from = "src" }
|
||||
]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.11"
|
||||
httpx = "^0.27.0"
|
||||
pydantic = "^2.7.0"
|
||||
pyyaml = "^6.0.1"
|
||||
psutil = "^5.9.8"
|
||||
aiosignal = "^1.3.1"
|
||||
uvloop = { version = "^0.19.0", optional = true }
|
||||
asyncio = { version = "^3.4.3", optional = true }
|
||||
rich = "^13.7.1"
|
||||
|
||||
[tool.poetry.extras]
|
||||
uvloop = ["uvloop"]
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pytest = "^8.2.0"
|
||||
pytest-asyncio = "^0.23.0"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
Reference in New Issue
Block a user