-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 760 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 760 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
32
33
[tool.poetry]
name = "multi-translate"
version = "0.1.0"
description = "Translate api using multiple external apis"
authors = ["Reuben Thomas-Davis <reubenestd@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
sqlalchemy = "^1.3.17"
fastapi = "^0.54.2"
databases = {extras = ["postgresql"], version = "^0.3.2"}
graphene = "^2.1.8"
httpx = "^0.13.1"
uvicorn = "^0.11.5"
google-cloud-translate = "^2.0.1"
boto3 = "^1.13.19"
grpcio = "^1.29.0"
pyyaml = "^5.3.1"
slowapi = "^0.1.1"
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
pytablewriter = "^0.54.0"
gql = "^2.0.0"
importanize = "^0.7.0"
pyflakes = "^2.2.0"
autoflake = "^1.3.1"
pytest-trio = "^0.6.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"