-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
75 lines (70 loc) · 1.32 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "repalette"
version = "0.1.0"
description = ""
authors = ["Daniel Gafni <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
torch = "^1.7.0"
torchvision = "^0.8.1"
pytorch-lightning = "^1.0.8"
tqdm = "^4.54.1"
scikit-learn = "*"
scikit-image = "*"
requests = "^2.25.0"
SQLAlchemy = "^1.3.20"
beautifulsoup4 = "^4.9.3"
python-dotenv = "^0.15.0"
s3fs = "0.4"
boto3 = "^1.16.35"
mysqlclient = "^2.0.2"
optuna = "*"
discord = "^1.0.1"
nest-asyncio = "^1.4.3"
fastapi = "^0.63.0"
python-multipart = "^0.0.5"
uvicorn = "^0.13.3"
aiofiles = "^0.6.0"
Jinja2 = "^2.11.3"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest = "^6.1.2"
ipywidgets = "^7.5.1"
setuptools = "^50.3.2"
awscli = "^1.18.196"
cosmos-wfm = "^2.13.11"
pre-commit = "^2.9.3"
jupyterlab = "^2.2.0"
jupyter-core = "^4.7.0"
jupyter-client = "^6.1.11"
flake8 = "^3.8.4"
autoflake = "^1.4"
mypy = "^0.790"
isort = "^5.7.0"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| documents
| notebooks
)/
'''
[tool.isort]
profile = "black"
line_length = 120
src_paths = ["repalette"]