123 lines
4.4 KiB
TOML
123 lines
4.4 KiB
TOML
[project]
|
|
name = "twitch-drop-notifier"
|
|
version = "0.1.0"
|
|
description = "A Django app that notifies you when a new Twitch drop is available."
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"discord-webhook",
|
|
"django-debug-toolbar",
|
|
"django-stubs-ext",
|
|
"django",
|
|
"platformdirs",
|
|
"psycopg[binary,pool]",
|
|
"python-dotenv",
|
|
"django-pghistory",
|
|
"django-pgclone",
|
|
"django-pgstats",
|
|
"django-auto-prefetch",
|
|
]
|
|
|
|
# You can install development dependencies with `uv install --dev`.
|
|
# Or you can install them with `uv install --dev -r requirements-dev.txt`.
|
|
# uv can be replaced with `pip`if you don't have uv installed.
|
|
[dependency-groups]
|
|
dev = [
|
|
"djlint",
|
|
"pre-commit",
|
|
"pytest",
|
|
"pytest-django",
|
|
"ruff",
|
|
"django-stubs[compatible-mypy]",
|
|
"black",
|
|
]
|
|
|
|
# https://docs.astral.sh/ruff/settings/
|
|
[tool.ruff]
|
|
# Enable all rules
|
|
lint.select = ["ALL"]
|
|
|
|
# https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html
|
|
lint.pydocstyle.convention = "google"
|
|
|
|
# Ignore some rules
|
|
lint.ignore = [
|
|
"CPY001", # Checks for the absence of copyright notices within Python files.
|
|
"D100", # Checks for undocumented public module definitions.
|
|
"D104", # Checks for undocumented public package definitions.
|
|
"D106", # Checks for undocumented public class definitions, for nested classes.
|
|
"ERA001", # Checks for commented-out Python code.
|
|
"FIX002", # Checks for "TODO" comments.
|
|
|
|
# Conflicting lint rules when using Ruff's formatter
|
|
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
|
|
"COM812", # Checks for the absence of trailing commas.
|
|
"COM819", # Checks for the presence of prohibited trailing commas.
|
|
"D206", # Checks for docstrings that are indented with tabs.
|
|
"D300", # Checks for docstrings that use '''triple single quotes''' instead of """triple double quotes""".
|
|
"E111", # Checks for indentation with a non-multiple of 4 spaces.
|
|
"E114", # Checks for indentation of comments with a non-multiple of 4 spaces.
|
|
"E117", # Checks for over-indented code.
|
|
"ISC001", # Checks for implicitly concatenated strings on a single line.
|
|
"ISC002", # Checks for implicitly concatenated strings that span multiple lines.
|
|
"Q000", # Checks for inline strings that use single quotes or double quotes, depending on the value of the lint.flake8-quotes.inline-quotes option.
|
|
"Q001", # Checks for multiline strings that use single quotes or double quotes, depending on the value of the lint.flake8-quotes.multiline-quotes setting.
|
|
"Q002", # Checks for docstrings that use single quotes or double quotes, depending on the value of the lint.flake8-quotes.docstring-quotes setting.
|
|
"Q003", # Checks for strings that include escaped quotes, and suggests changing the quote style to avoid the need to escape them.
|
|
"W191", # Checks for indentation that uses tabs.
|
|
]
|
|
|
|
# Default is 88 characters
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"**/tests/**" = [
|
|
"ARG", # Unused function args -> fixtures nevertheless are functionally relevant...
|
|
"FBT", # Don't care about booleans as positional arguments in tests, e.g. via @pytest.mark.parametrize()
|
|
"PLR2004", # Magic value used in comparison, ...
|
|
"S101", # asserts allowed in tests...
|
|
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes
|
|
]
|
|
"**/migrations/**" = [
|
|
"RUF012", # Checks for mutable default values in class attributes.
|
|
]
|
|
|
|
# https://www.djlint.com/
|
|
[tool.djlint]
|
|
# Set a profile for the template language. The profile will enable linter rules that apply to your template language, and may also change reformatting.
|
|
profile = "django"
|
|
|
|
# Formatter will attempt to format template syntax inside of tag attributes.
|
|
format_attribute_template_tags = true
|
|
|
|
# Format contents of style tags using css-beautify
|
|
format_css = true
|
|
|
|
# Format contents of script tags using js-beautify.
|
|
format_js = true
|
|
|
|
# Ignore some rules
|
|
ignore = "H006" # Img tag should have height and width attributes.
|
|
|
|
# https://pytest-django.readthedocs.io/en/latest/
|
|
[tool.pytest.ini_options]
|
|
# Where our Django settings are located.
|
|
DJANGO_SETTINGS_MODULE = "core.settings"
|
|
|
|
# Only run tests in files that match this pattern.
|
|
python_files = ["test_*.py"]
|
|
|
|
[tool.mypy]
|
|
plugins = ["mypy_django_plugin.main"]
|
|
|
|
[tool.django-stubs]
|
|
django_settings_module = "core.settings"
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
preview = true
|
|
unstable = true
|
|
|
|
[tool.isort]
|
|
profile = "black"
|