-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
28 lines (25 loc) · 903 Bytes
/
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
[tool.poetry]
name = "inventory-management-system"
version = "0.1.0a"
description = "A simple inventory management system for a cyberpunk-themed game. The system will manage items that players can acquire in the game. These items could range from cybernetic enhancements to weapons and gadgets."
authors = ["Serghei Dabula <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.11.4"
fastapi = "0.112.0"
uvicorn = "0.30.5"
alembic = "1.13.2"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.32"}
psycopg2-binary = "2.9.9"
asyncpg = "0.29.0"
fastapi-users = {extras = ["redis", "sqlalchemy"], version = "13.0.0"}
[tool.poetry.dev-dependencies]
pytest-asyncio = "0.23.8"
sqlalchemy-utils = "0.41.2"
httpx = "0.27.0"
pytest-mock = "3.14.0"
pytest-cov = "5.0.0"
python-dotenv = "1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"