-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (48 loc) · 1.43 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "zentra_api"
version = "0.1.14"
description = "A CLI tool for building FastAPI apps faster."
authors = ["Ryan Partridge <rpartridge101@gmail.com>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/Achronus/zentra-api"
homepage = "https://zentra.achronus.dev/api"
documentation = "https://zentra.achronus.dev/api"
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: FastAPI",
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
]
[tool.poetry.urls]
issues = "https://github.com/Achronus/zentra-api/issues"
[tool.poetry.scripts]
zentra-api = "zentra_api.cli.main:app"
[tool.poetry.dependencies]
python = "^3.12"
typer = "^0.12"
fastapi = { extras = ["standard"], version = "^0.114" }
pydantic = "^2.9"
toml = "^0.10"
sqlalchemy = "^2.0"
bcrypt = "^4.2"
inflect = "^7.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
responses = "^0.25"
pytest-cov = "^5.0"
psycopg2 = "^2.9"
pyjwt = "^2.9"
alembic = "^1.13"
[tool.poetry.group.ci.dependencies]
git-cliff = "^2.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--cov-report term-missing --cov=zentra_api tests/"