django-for-runners_ynh/pyproject.toml

191 lines
5.7 KiB
TOML
Raw Normal View History

[project]
2021-10-10 14:35:06 +02:00
name = "for_runners_ynh"
dynamic = ["version"]
2023-04-02 20:15:56 +02:00
description = "YunoHost app package for https://github.com/jedie/django-for-runners"
license = {text = "GPL-3.0-or-later"}
readme = "README.md"
authors = [
{name = 'Jens Diemer', email = 'git@jensdiemer.de'}
]
2024-08-04 21:05:16 +02:00
requires-python = ">=3.11"
dependencies = [
2024-08-04 21:05:51 +02:00
"django_for_runners>=0.19.0", # https://github.com/jedie/django-for-runners
#
# extras "ynh" will install: gunicorn, psycopg2, django-redis and django-axes
# see: https://github.com/YunoHost-Apps/django_yunohost_integration/blob/main/pyproject.toml
2024-08-04 21:05:51 +02:00
"django_yunohost_integration[ynh]>=0.8.0", # https://github.com/YunoHost-Apps/django_yunohost_integration
#
"cli-base-utilities", # https://github.com/jedie/cli-base-utilities
]
[project.optional-dependencies]
dev = [
"bx_django_utils", # https://github.com/boxine/bx_django_utils
2023-11-26 13:06:24 +01:00
"beautifulsoup4", # https://pypi.org/project/beautifulsoup4/
2024-08-02 17:01:38 +02:00
"manageprojects", # https://github.com/jedie/manageprojects
"pip-tools", # https://github.com/jazzband/pip-tools/
2023-11-26 21:01:26 +01:00
"tblib", # https://github.com/ionelmc/python-tblib
"tox", # https://github.com/tox-dev/tox
"coverage", # https://github.com/nedbat/coveragepy
"autopep8", # https://github.com/hhatto/autopep8
"pyupgrade", # https://github.com/asottile/pyupgrade
"flake8", # https://github.com/pycqa/flake8
"pyflakes", # https://github.com/PyCQA/pyflakes
"codespell", # https://github.com/codespell-project/codespell
"EditorConfig", # https://github.com/editorconfig/editorconfig-core-py
2024-08-02 17:01:38 +02:00
"pip-audit", # https://github.com/pypa/pip-audit
"mypy", # https://github.com/python/mypy
"twine", # https://github.com/pypa/twine
# https://github.com/akaihola/darker
# https://github.com/ikamensh/flynt
# https://github.com/pycqa/isort
# https://github.com/pygments/pygments
"darker[flynt, isort, color]",
# indirect depencies for Python <=3.11
# Work-a-round for: https://github.com/jazzband/pip-tools/issues/1326
"backports.tarfile",
]
[project.urls]
Documentation = "https://github.com/YunoHost-Apps/django-for-runners_ynh"
Source = "https://github.com/YunoHost-Apps/django-for-runners_ynh"
[project.scripts]
for_runners_ynh_app = "for_runners_ynh.__main__:main"
for_runners_ynh_dev = "for_runners_ynh.cli.dev:main"
2020-12-22 18:55:11 +01:00
2024-08-02 17:01:38 +02:00
[ynh-integration]
local_settings_source= "local_settings_source.py"
2020-12-22 18:55:11 +01:00
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=7.1"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["for_runners_ynh*"]
[tool.setuptools.dynamic]
version = {attr = "for_runners_ynh.__version__"}
2021-01-17 12:02:05 +01:00
2024-08-02 17:01:38 +02:00
[tool.cli_base.pip_audit]
# https://github.com/jedie/cli-base-utilities/blob/main/docs/pip_audit.md
requirements=["requirements.dev.txt"]
strict=true
require_hashes=true
ignore-vuln=[]
2022-04-15 16:45:12 +02:00
[tool.darker]
src = ['.']
# YunoHost apps still use "master" istead of "main", isn't it?
2022-04-15 16:45:12 +02:00
revision = "origin/master..."
2023-04-02 20:15:56 +02:00
line_length = 119
color = true
2022-04-15 16:45:12 +02:00
skip_string_normalization = true
diff = false
check = false
stdout = false
isort = true
lint = [
"flake8",
]
log_level = "INFO"
2021-01-17 12:02:05 +01:00
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format
atomic=true
2022-04-15 16:45:12 +02:00
profile='black'
2023-04-02 20:15:56 +02:00
skip_glob=[".*", "*/htmlcov/*","*/migrations/*","*/local_test/*"]
known_first_party=['django_for_runners', 'for_runners_ynh']
2023-04-02 20:15:56 +02:00
line_length=119
2021-01-17 12:02:05 +01:00
lines_after_imports=2
2022-09-18 17:35:54 +02:00
[tool.coverage.run]
2023-04-02 20:15:56 +02:00
branch = true
parallel = true
concurrency = ["multiprocessing"]
source = ['.']
2023-11-26 21:01:26 +01:00
command_line = './dev-cli.py test'
disable_warnings = ["couldnt-parse"]
2023-04-02 20:15:56 +02:00
[tool.coverage.report]
omit = ['.*', '*/tests/*']
skip_empty = true
2023-11-26 21:01:26 +01:00
fail_under = 10
2023-04-02 20:15:56 +02:00
show_missing = true
exclude_lines = [
'if self.debug:',
'pragma: no cover',
'raise NotImplementedError',
'if __name__ == .__main__.:',
]
2022-09-18 17:35:54 +02:00
2021-01-17 12:02:05 +01:00
2023-04-02 20:15:56 +02:00
[tool.tox] # https://tox.wiki/en/latest/config.html#pyproject-toml
2021-01-17 12:02:05 +01:00
legacy_tox_ini = """
[tox]
isolated_build = True
2024-08-04 21:05:16 +02:00
envlist = py{312,311}
2021-01-17 12:02:05 +01:00
skip_missing_interpreters = True
[testenv]
passenv = *
2023-04-02 20:15:56 +02:00
skip_install = true
commands_pre =
pip install -U pip-tools
pip-sync requirements.dev.txt
2021-01-17 12:02:05 +01:00
commands =
{envpython} -m coverage run --context='{envname}'
{envpython} -m coverage combine --append
{envpython} -m coverage xml
{envpython} -m coverage report
2021-01-17 12:02:05 +01:00
"""
2023-04-02 20:15:56 +02:00
[tool.mypy]
warn_unused_configs = true
ignore_missing_imports = true
allow_redefinition = true # https://github.com/python/mypy/issues/7165
show_error_codes = true
plugins = []
exclude = ['.venv', 'tests']
2023-04-02 20:15:56 +02:00
[manageprojects] # https://github.com/jedie/manageprojects
initial_revision = "2281f4b"
initial_date = 2023-04-02T17:40:58+02:00
cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/"
cookiecutter_directory = "yunohost_django_package"
2023-04-04 14:21:04 +02:00
applied_migrations = [
"183124a", # 2023-04-04T12:26:15+02:00
"3383cb0", # 2023-11-09T20:14:05+01:00
2023-11-26 13:06:24 +01:00
"4abd4c0", # 2023-11-25T15:59:31+01:00
2023-11-26 21:01:26 +01:00
"2f9fd7b", # 2023-11-26T20:13:32+01:00
2024-08-02 17:01:38 +02:00
"52669d0", # 2024-08-02T15:47:04+02:00
2024-08-25 15:37:43 +02:00
"3dac094", # 2024-08-25T15:13:50+02:00
2023-04-04 14:21:04 +02:00
]
2023-04-02 20:15:56 +02:00
[manageprojects.cookiecutter_context.cookiecutter]
project_name = "django-for-runners"
full_name = "Jens Diemer"
github_username = "jedie"
author_email = "git@jensdiemer.de"
upstream_pkg_name = "django_for_runners"
upstream_url = "https://github.com/jedie/django-for-runners"
2023-04-04 14:21:04 +02:00
upstream_pkg_app_name = "for_runners"
upstream_pkg_project_name = "for_runners_project"
2023-04-02 20:15:56 +02:00
ynh_app_pkg_name = "for_runners_ynh"
ynh_app_url = "https://github.com/YunoHost-Apps/django-for-runners_ynh"
bug_tracker_url = "https://github.com/jedie/django-for-runners/issues"
2023-04-04 14:21:04 +02:00
upstream_version = "0.17.3"
ynh_version = "+ynh3"
2023-04-02 20:15:56 +02:00
package_description = "YunoHost app package for https://github.com/jedie/django-for-runners"
license = "GPL-3.0-or-later"
_template = "https://github.com/jedie/cookiecutter_templates/"
2023-04-04 14:21:04 +02:00