-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (34 loc) · 955 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
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "nestipy"
version = "0.1.7"
description = "Nestipy is a Python framework built on top of Litestar that follows the modular architecture of NestJS"
authors = ["tsiresymila <[email protected]>"]
readme = "README.md"
packages = [{include = "nestipy", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
litestar = "^2.6.1"
fastapi = "^0.109.2"
pymysql = "^1.1.0"
uvicorn = {extras = ["standard"], version = "^0.27.1"}
peewee = "^3.17.1"
python-dotenv = "^1.0.1"
minijinja = "^1.0.8"
pyee = "^11.1.0"
snakecase = "^1.0.1"
strawberry-graphql = "^0.219.2"
pathlib2 = "^2.3.7.post1"
questionary = "^2.0.1"
click-aliases = "^1.0.4"
fastapi-utils = "^0.2.1"
masonite-orm = "^2.20.0"
beanie = "^1.25.0"
python-socketio = "^5.11.1"
autopep8 = "^2.0.4"
isort = "^5.13.2"
autoflake = "^2.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
nestipy = "nestipy.cli.cli:main"