21 lines
357 B
TOML
21 lines
357 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "useful-functions"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"maya>=0.6.1",
|
|
"numpy>=2.5.1",
|
|
"pandas>=3.0.3",
|
|
"psutil>=7.2.2",
|
|
"pytz>=2026.2",
|
|
"requests>=2.34.2",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pandas-stubs>=3.0.3",
|
|
] |