forked from factly/meta-facts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 822 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
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "meta-facts"
version = "0.1.0"
description = "Automatic generation of Meta-Data for a dataset"
authors = ["Your address email ([email protected])"]
[tool.poetry.dependencies]
python = "^3.8"
uvicorn = "^0.11.1"
pydantic = "^1.3"
requests = "^2.22.0"
loguru = "^0.4.0"
joblib = "^0.15.1"
python-dotenv = "^0.19.2"
pandas = "^1.3.5"
asyncio = "^3.4.3"
python-multipart = "^0.0.5"
fastapi = "0.71.0"
boto3 = "^1.24.7"
aiohttp = "^3.8.1"
aiofiles = "^0.8.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
.eggs
| .git
| .venv
| .eggs
| .cache
| __pycache__
| _build
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 79
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"