mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
28 lines
628 B
TOML
28 lines
628 B
TOML
[project]
|
|
name = "ara"
|
|
version = "0.1.0"
|
|
description = "The Domna retrofit modelling backend. Ingestion + modelling pipelines."
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"domna-domain",
|
|
"domna-repos",
|
|
"domna-fetchers",
|
|
"domna-utils",
|
|
"pandas>=2.0",
|
|
"pandas-stubs",
|
|
"numpy>=1.26",
|
|
"pydantic>=2.0",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
domna-domain = { workspace = true }
|
|
domna-repos = { workspace = true }
|
|
domna-fetchers = { workspace = true }
|
|
domna-utils = { workspace = true }
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ara"]
|