-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
42 lines (38 loc) · 1.02 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
[tool.poetry]
name = "fastapi-cloud-drives"
version = "0.1.4"
description = "Module for FastAPI to work with cloud drives"
authors = ["Hasan Aliyev <hasan.aliyev.555@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/MadeByMads/fastapi-cloud-drives"
repository = "https://github.com/MadeByMads/fastapi-cloud-drives"
keywords = [
"FastAPI",
"Google Drive",
"OneDrive",
"Dropbox",
"Amazon S3"
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.6"
uvicorn = "^0.13.3"
google-api-python-client = "^1.12.8"
oauth2client = "^4.1.3"
google-auth-oauthlib = "^0.4.2"
pydantic = "^1.7.3"
fastapi = "^0.63.0"
dropbox = "^11.2.0"
boto3 = "^1.17.11"
aiofiles = "^0.6.0"
itsdangerous = "^1.1.0"
requests = "^2.25.1"
[tool.poetry.dev-dependencies]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/MadeByMads/fastapi-cloud-drives/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"