blob: c697cd018ef075435da04745e392afa93e41ff93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[project]
name = "internal-policy-server"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"psycopg>=3.2.9",
"psycopg-binary>=3.2.9",
"psycopg-pool>=3.2.6",
"sdnotify>=0.3.2",
"systemd-socketserver>=1.0",
]
[project.scripts]
internal-policy-server = "internal_policy_server.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
|