38 lines
772 B
TOML
38 lines
772 B
TOML
[project]
|
|
name = "slck"
|
|
version = "0.2.0"
|
|
description = "Tooling to set your Slack status on the fly without having to click around"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"click~=8.0",
|
|
"pydantic~=2.0",
|
|
"slack_sdk~=3.0",
|
|
"pyyaml~=6.0"
|
|
]
|
|
requires-python = "~= 3.12"
|
|
|
|
[[project.authors]]
|
|
name = "Marc Cataford"
|
|
email = "mcat@riseup.net"
|
|
|
|
[project.urls]
|
|
Homepage = "https://forge.karnov.club/marc/slck"
|
|
"Bug Tracker" = "https://forge.karnov.club/marc/slck/issues"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest~=8.0",
|
|
"freezegun",
|
|
]
|
|
|
|
[project.scripts]
|
|
slck = "main:run"
|
|
|
|
[tool.pylint.main]
|
|
disable = [
|
|
"line-too-long",
|
|
"too-few-public-methods",
|
|
"missing-function-docstring",
|
|
"missing-module-docstring",
|
|
"broad-exception-caught"
|
|
]
|