-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.04 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "autosink-orchestra"
version = "0.1.0"
description = ""
authors = [
{name = "Janghoo Lee", email = "dlwkdgn1@naver.com"}
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.9"
dependencies = [
"autosink-data-preparation",
"autosink-data-validation",
"autosink-model-evaluation",
"autosink-model-training",
"autosink-model-validation",
]
[project.optional-dependencies]
dev = [
"flit",
"pylint",
"yapf",
]
# pyproject.toml is a new configuration file defined in PEP 518.
# It is design to store build system requirements, but it can also store any
# tool configuration for your Python project, possibly replacing the need for
# setup.cfg or other tool-specific files.
# https://github.com/carlosperate/awesome-pyproject
[tool.yapf]
indent_width = 4
based_on_style = 'google'
COLUMN_LIMIT = 100
DEDENT_CLOSING_BRACKETS = true
[tool.pylint.FORMAT]
max-line-length = 100