2024-06-04 14:59:05 +01:00
|
|
|
[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",
|
2024-06-04 17:18:04 +01:00
|
|
|
"SQLAlchemy>=2.0.30",
|
2024-06-04 14:59:05 +01:00
|
|
|
]
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
readme = "README.md"
|
|
|
|
license = {text = "MIT"}
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["pdm-backend"]
|
|
|
|
build-backend = "pdm.backend"
|
|
|
|
|
|
|
|
[project.scripts]
|
2024-06-04 17:18:04 +01:00
|
|
|
datacamp-postgres-tutorial = "hello_postgres.datacamp_tutorial:main"
|
2024-06-04 14:59:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
[tool.pdm]
|
|
|
|
distribution = true
|