-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 907 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
50
51
52
53
[tool.poetry]
name = "modular_multiplication"
version = "0.1.0"
description = "App for visualizing modular multiplication on a circle"
authors = ["vegard ulriksen solberg <vegardsolberg@hotmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
plotly = "*"
dash = "*"
dash-bootstrap-components = "*"
seaborn = "*"
gunicorn = "*"
flake8 = "^3.9.2"
dash_defer_js_import = "^0.0.2"
[tool.poetry.dev-dependencies]
pre-commit = "^2.13.0"
black = "^21.7b0"
flake8 = "^3.9.2"
flakehell = "^0.9.0"
[tool.isort]
profile = "black"
line_length = 100
[tool.flakehell]
max-line-length = 100
[tool.black]
line-length = 100
target-version = ["py37", "py38"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| profiling
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"