26 lines
557 B
TOML
26 lines
557 B
TOML
|
[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",
|
||
|
]
|
||
|
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
|