-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.06 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
[project]
name = "python-pkgs"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"coreutils-lib",
"database-lib",
"depends-lib",
"http-lib",
"loguru>=0.7.3",
"pandas-lib",
"settings-lib",
"setup-lib",
"time-utils",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools]
py-modules = []
[tool.hatch.build.targets.wheel]
packages = [
"libs/core_utils",
"libs/database",
"libs/depends",
"libs/http",
"libs/pandas",
"libs/settings",
"libs/setup",
"libs/time_utils",
]
[tool.uv.workspace]
members = ["libs/*"]
[tool.uv.sources]
coreutils-lib = { workspace = true }
database-lib = { workspace = true }
depends-lib = { workspace = true }
http-lib = { workspace = true }
pandas-lib = { workspace = true }
settings-lib = { workspace = true }
setup-lib = { workspace = true }
time-utils = { workspace = true }
[dependency-groups]
dev = ["alembic>=1.14.1", "nox>=2025.2.9", "pytest-xdist>=3.6.1", "ruff>=0.9.5"]