-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 827 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 827 Bytes
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
[tool.poetry]
name = "flask_ease"
version = "0.2.2"
description = "Flask extension for creating REST APIs. You get autogenerated OpenAPI spec (with Redoc and Swagger Docs), Request parsing and validations (query, path, body, form and files) and Response validation."
authors = ["Shubham Biswas <shubhambiswas.zero@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
flask = "^1.1.2"
pydantic = "^1.5.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flask-sqlalchemy = "^2.4.3"
alembic = "^1.4.2"
autopep8 = "^1.5.3"
pydantic = "^1.5.1"
python-dotenv = "^0.14.0"
psycopg2-binary = "^2.8.5"
flask_cors = "^3.0.8"
passlib = "^1.7.2"
bcrypt = "^3.1.7"
pytz = "^2020.1"
pyjwt = "^1.7.1"
twine = "^3.2.0"
setuptools = "^49.1.1"
wheel = "^0.34.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"