29 lines
542 B
TOML
29 lines
542 B
TOML
[project]
|
|
name = "saas-imobiliaria-backend"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"flask>=3.0",
|
|
"flask-sqlalchemy>=3.1",
|
|
"flask-migrate>=4.0",
|
|
"flask-cors>=4.0",
|
|
"pydantic>=2.7",
|
|
"pydantic[email]",
|
|
"psycopg2-binary>=2.9",
|
|
"python-dotenv>=1.0",
|
|
"PyJWT>=2.9",
|
|
"bcrypt>=4.2",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-flask>=1.3",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["app"]
|