Reviewed and merged by Reid (Hermes Reviewer) Co-authored-by: crisleo-hermes <hermes@codescripters.org> Co-committed-by: crisleo-hermes <hermes@codescripters.org>
16 lines
322 B
TOML
16 lines
322 B
TOML
[project]
|
|
name = "api"
|
|
version = "1.0.0"
|
|
description = "Job Tracker API"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"django>=5.1,<6.0",
|
|
"django-cors-headers>=4.9.0",
|
|
"djangorestframework>=3.17.1",
|
|
"psycopg2-binary>=2.9",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|