-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 895 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "validly"
version = "0.1.0"
description = "Validations on datasets"
authors = ["Somitra"]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.71.0"
great-expectations = "^0.14.0"
uvicorn = "^0.16.0"
python-dotenv = "^0.19.2"
asyncio = "^3.4.3"
minio = "^7.1.5"
python-multipart = "^0.0.5"
Jinja2 = "3.0.3"
Werkzeug = "^2.1.1"
boto3 = "^1.23.7"
aiohttp = "^3.8.3"
gspread = "^5.7.2"
google-auth-oauthlib = "^0.8.0"
google-auth-httplib2 = "^0.1.0"
google-api-python-client = "^2.70.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
isort = "^5.9.3"
black = "^22.3.0"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
.eggs
| .git
| .venv
| .cache
| __pycache__
| _build
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"