-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (28 loc) · 929 Bytes
/
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
[project]
name = "waybar-crypto"
description = "A Waybar module for displaying cryptocurrency market information from CoinMarketCap."
authors = [{ name = "Ross", email = "[email protected]" }]
license = { file = "LICENSE.md" }
requires-python = ">=3.10"
dependencies = ["requests"]
dynamic = ["version", "readme"]
[project.scripts]
waybar-crypto = "waybar_crypto:main"
[project.optional-dependencies]
dev = ["ruff", "bandit", "pre-commit>=3"]
tests = ["pytest>=8", "pytest-cov>=5"]
[tool.setuptools.dynamic]
version = { attr = "waybar_crypto.VERSION" }
readme = { file = ["README.md"] }
[tool.ruff]
line-length = 100
[tool.bandit]
exclude = ["test_*.py"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"