-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.15 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
[tool.black]
target-version = ['py311']
include-trailing-comma = true
line-length = 88
exclude = '''
/(
\.eggs
| \.git
| \.venv
| _build
| build
| dist
| input-images
| results
)/
'''
[tool.isort]
line_length = 88
force_grid_wrap = 0
combine_as_imports = true
skip = []
multi_line_output = 3
include_trailing_comma = true
lines_after_imports = 2
known_first_party = []
known_third_party = []
[tool.poetry]
name = "self-org-maps"
version = "0.1.0"
description = ""
authors = ["Ruben Cronie <[email protected]>"]
readme = "README.md"
packages = [{include = "som"}]
[tool.poetry.dependencies]
python = "^3.10"
pillow = "10.0.1"
celery = {version = "5.2.7", extras = ["sqs"]}
fastapi = "0.79.0"
fastapi-utils = "0.2.1"
matplotlib = "^3.6.3"
numpy = "^1.22.4"
opencv-contrib-python = "4.5.5.64"
psutil = "^5.9.4"
pydantic = ">=1.10.0"
python-multipart = "^0.0.5"
pytransloadit = "0.2.0"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
loguru = "^0.7.2"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
pre-commit = "^3.0.4"
isort = "5.12.0"
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"