27 lines
459 B
TOML
27 lines
459 B
TOML
|
[project]
|
||
|
name = "akibabot"
|
||
|
version = "0.1.0"
|
||
|
dependencies = [
|
||
|
"akibapass_downloader",
|
||
|
"toml",
|
||
|
"aioxmpp",
|
||
|
|
||
|
# Dependency of aioxmpp
|
||
|
"pytz"
|
||
|
]
|
||
|
|
||
|
[project.optional-dependencies]
|
||
|
dev = [
|
||
|
"black",
|
||
|
"pylint"
|
||
|
]
|
||
|
|
||
|
[project.scripts]
|
||
|
akibabot = "akibabot.main:main"
|
||
|
|
||
|
[tools.build]
|
||
|
packages = ["akibabot"]
|
||
|
|
||
|
[tool.pylint."MESSAES CONTROL"]
|
||
|
max-line-length=120
|
||
|
disable = "missing-class-docstring,missing-module-docstring,missing-function-docstring"
|