-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.4 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
55
56
57
58
59
60
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "snailshell"
version = "1.2.2"
description = "싱크대 자동 수전 절수 시스템"
authors = [
{name = "Janghoo Lee", email = "dlwkdgn1@naver.com"},
{name = "Subin Jang", email = "subinaksl@naver.com"},
{name = "Seokwoo Ahn", email = "patrick0503@naver.com"},
{name = "Dahyun Kim", email = "builtforlove@naver.com"},
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.8"
dependencies = [
"PyYAML",
"torch",
"numpy",
"torchvision",
"transformers",
"opencv-python",
"pyserial",
"pytz",
"wandb",
"autosink-data-elt",
"google-api-python-client",
"discord-webhook",
]
[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