hello-postgres/pyproject.toml

27 lines
580 B
TOML
Raw Normal View History

[project]
name = "hello-postgres"
version = "0.1.0"
description = "A project I'm working on to learn how to use Postgres with Python."
authors = [
{name = "slashtechno", email = "77907286+slashtechno@users.noreply.github.com"},
]
dependencies = [
"psycopg2-binary>=2.9.9",
"python-dotenv>=1.0.1",
2024-06-04 15:19:12 +01:00
"icecream>=2.1.3",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.scripts]
hello-postgres = "hello_postgres.__main__:main"
[tool.pdm]
distribution = true