30 lines
594 B
TOML
30 lines
594 B
TOML
|
[project]
|
||
|
name = "data-engineer-farpost"
|
||
|
version = "0.1.0"
|
||
|
description = "Add your description here"
|
||
|
authors = [
|
||
|
{ name = "matv864", email = "matv864@gmail.com" }
|
||
|
]
|
||
|
dependencies = [
|
||
|
"sqlalchemy>=2.0.39",
|
||
|
"asyncpg>=0.30.0",
|
||
|
"alembic>=1.15.1",
|
||
|
"pydantic-settings>=2.8.1",
|
||
|
]
|
||
|
readme = "README.md"
|
||
|
requires-python = ">= 3.12"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|
||
|
|
||
|
[tool.rye]
|
||
|
managed = true
|
||
|
dev-dependencies = []
|
||
|
|
||
|
[tool.hatch.metadata]
|
||
|
allow-direct-references = true
|
||
|
|
||
|
[tool.hatch.build.targets.wheel]
|
||
|
packages = ["src/data_engineer_farpost"]
|