-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.28 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sparse_to_dense"
version = "0.0.1"
description = "labeling tool for autosink project"
authors = [
{name = "Janghoo Lee", email = "[email protected]"},
{name = "Subin Jang", email = "[email protected]"},
{name = "Seokwoo Ahn", email = "[email protected]"},
{name = "Dahyun Kim", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.8"
dependencies = [
"pick",
"anytree",
"opencv-python",
"natsort",
"streamlit",
"autosink-data-elt",
]
[project.scripts]
snailshell = "snailshell.main:main"
[project.optional-dependencies]
dev = [
"flit",
"pylint",
"yapf",
"python-dotenv",
"requests",
]
# 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