-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 845 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
[project]
name = "miner-workspace"
version = "0.0.1"
description = "Miner monorepo — workspace root (not distributed as a package)"
requires-python = ">=3.12"
readme = "README.md"
dependencies = [
"detonator",
"dataminer",
"marketbreadth",
"minerworkers",
"browserscraper",
"minerservice",
"maintainer",
"minertrader",
]
[tool.uv.sources]
detonator = { workspace = true }
dataminer = { workspace = true }
marketbreadth = { workspace = true }
minerworkers = { workspace = true }
browserscraper = { workspace = true }
minerservice = { workspace = true }
maintainer = { workspace = true }
minertrader = { workspace = true }
[tool.uv.workspace]
members = [
"Detonator",
"DataMiner",
"MarketBreadth",
"MinerWorkers",
"BrowserScraper",
"MinerService",
"Maintainer",
"MinerTrader",
]