-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 746 Bytes
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 746 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
[project]
name = "Smarter"
version = "0.10.24"
requires-python = ">=3.10"
[project.urls]
homepage = "https://github.com/FullStackWithLawrence/azureml-example"
documentation = "https://github.com/FullStackWithLawrence/azureml-example"
repository = "https://github.com/FullStackWithLawrence/azureml-example"
[tool.isort]
profile = "black"
lines_after_imports = 2
[tool.black]
line-length = 120
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.env
| venv
| node_modules
| build
| buck-out
| build
| dist
| __pypackages__
| staticfiles
|.pypi_cache
| .pytest_cache
| .coverage
| keen_v3.0.6
| mysql-data
| htmlcov
| .eggs
| .idea
)/
'''