-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 896 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "src"
authors = [
{ name = "Vid Hanzel", email = "vid.hanzel@gmail.com" },
{ name = "Gregor Cerar", email = "gregor.cerar@ijs.si" }
]
readme = "README.md"
requires-python = ">=3.9"
version = "0.1.0"
license = { file = "LICENSE" }
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
#optional-dependencies = {
# tensorflow = { file = ["requirements.tensorflow.txt"] },
#}
[tool.black]
# length set to 1000 to not mess with line length. Otherwise I suggest length 119.
line-length = 1000
target-version = ['py39']
include = '\.pyi?$'
[tool.isort]
atomic = true
profile = "black"
line_length = 1000
skip_gitignore = true
combine_as_imports = true
known_first_party = ["src"]
[tool.pylint.format]
max-line-length = "1000"