-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "saude-drf"
dynamic = ["version"]
authors = [
{ name="Alexandre Harano", email="[email protected]" },
]
description = "Desafio Lacrei Saúde Back end de Alexandre Harano"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Django >=4.2.8,<5",
"djangorestframework >=3.14.0,<3.15",
"dj-database-url >=2.1.0,<2.2",
"psycopg[binary,pool] >=3.1.14,<3.2",
"django-model-utils >=4.3.1,<4.4",
"django-filter >=23.5,<23.6",
"drf-spectacular[sidecar] >=0.26.5,<0.26.6",
]
[project.urls]
"Homepage" = "https://github.com/ayharano/saude-drf"
"Bug Tracker" = "https://github.com/ayharano/saude-drf/issues"
[project.optional-dependencies]
test = [
"factory-boy >=3.3.0,<3.4",
]
[tool.setuptools.dynamic]
version = {file = "saude_drf/VERSION"}