django-for-runners_ynh/pyproject.toml

168 lines
4.9 KiB
TOML
Raw Normal View History

2020-12-22 18:55:11 +01:00
[tool.poetry]
2021-10-10 14:35:06 +02:00
name = "for_runners_ynh"
2023-04-03 08:49:36 +02:00
version = "0.17.3rc0+ynh1"
2023-04-02 20:15:56 +02:00
description = "YunoHost app package for https://github.com/jedie/django-for-runners"
authors = ["Jens Diemer <git@jensdiemer.de>"]
homepage = "https://github.com/YunoHost-Apps/django-for-runners_ynh"
2023-04-02 20:15:56 +02:00
license = "GPL-3.0-or-later"
readme = 'README.md'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/YunoHost-Apps/django-for-runners_ynh/issues"
2020-12-22 18:55:11 +01:00
[tool.poetry.dependencies]
2023-04-02 20:15:56 +02:00
python = ">=3.9,<4.0.0" # Stay with 3.9 until YunoHost used >=Debian 11 (Bullseye)
#
2023-04-03 08:49:36 +02:00
django_for_runners = ">=0.17.3rc0" # https://github.com/jedie/django-for-runners
2023-04-02 20:15:56 +02:00
#
# extras "ynh" will install: gunicorn, psycopg2, django-redis and django-axes
# see: https://github.com/YunoHost-Apps/django_yunohost_integration/blob/main/pyproject.toml
django_yunohost_integration = {version = ">=0.5.1", extras = ["ynh"]} # https://github.com/YunoHost-Apps/django_yunohost_integration
2021-01-17 12:00:46 +01:00
2020-12-22 18:55:11 +01:00
[tool.poetry.dev-dependencies]
2022-09-18 17:35:54 +02:00
bx_py_utils = "*" # https://github.com/boxine/bx_py_utils
bx_django_utils = "*" # https://github.com/boxine/bx_django_utils
2023-04-02 20:15:56 +02:00
tox = ">=4.4.4" # https://github.com/tox-dev/tox
coverage= "*" # https://github.com/nedbat/coveragepy
flake8 = "*" # https://github.com/pycqa/flake8
EditorConfig = "*" # https://github.com/editorconfig/editorconfig-core-py
safety = "*" # https://github.com/pyupio/safety
mypy = "*" # https://github.com/python/mypy
twine = "*" # https://github.com/pypa/twine
poetry-publish = "*" # https://github.com/jedie/poetry-publish
2021-01-17 11:32:28 +01:00
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
requests = "*" # https://github.com/psf/requests
2023-04-02 20:15:56 +02:00
packaging = "*" # https://github.com/pypa/packagi
beautifulsoup4 = "*" # https://pypi.org/project/beautifulsoup4/
2023-04-02 20:15:56 +02:00
# https://github.com/akaihola/darker
# https://github.com/ikamensh/flynt
# https://github.com/pycqa/isort
# https://github.com/pygments/pygments
darker = { version = "*", extras = ["flynt", "isort", "color"] }
tomli = "*" # https://github.com/hukkin/tomli
# tomli only needed for Python <3.11, but see bug:
# https://github.com/pypa/pip/issues/9644#issuecomment-1456583402
#tomli = {version = "*", markers = "python_version < \"3.11\""} # https://github.com/hukkin/tomli
2020-12-22 18:55:11 +01:00
[build-system]
2022-09-18 18:58:52 +02:00
requires = ["poetry-core"]
2020-12-22 18:55:11 +01:00
build-backend = "poetry.core.masonry.api"
2021-01-17 12:02:05 +01:00
2022-04-15 16:45:12 +02:00
[tool.darker]
src = ['.']
revision = "origin/master..."
2023-04-02 20:15:56 +02:00
line_length = 119
2022-04-15 16:45:12 +02:00
verbose = true
2023-04-02 20:15:56 +02:00
color = true
2022-04-15 16:45:12 +02:00
skip_string_normalization = true
diff = false
check = false
stdout = false
isort = true
2023-04-02 20:15:56 +02:00
flynt = true
2022-04-15 16:45:12 +02:00
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=['for_runners']
line_length=119
2021-01-17 12:02:05 +01:00
lines_after_imports=2
[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
minversion = "6.0"
2022-09-18 19:00:39 +02:00
norecursedirs = ".* .git __pycache__ conf local_test coverage* dist htmlcov"
2021-01-17 12:02:05 +01:00
# sometimes helpfull "addopts" arguments:
# -vv
# --verbose
# --capture=no
# --trace-config
# --full-trace
# -p no:warnings
addopts = """
--reuse-db
--nomigrations
--cov=.
2023-04-02 20:15:56 +02:00
--cov-config=pyproject.toml
2021-01-17 12:02:05 +01:00
--cov-report term-missing
--cov-report html
--cov-report xml
--no-cov-on-fail
--showlocals
--doctest-modules
--failed-first
--new-first
"""
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 = ['.']
[tool.coverage.report]
omit = ['.*', '*/tests/*']
skip_empty = true
fail_under = 30
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
2023-04-02 20:15:56 +02:00
envlist = py{311,310,39}
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
allowlist_externals = make
2021-01-17 12:02:05 +01:00
commands =
make pytest
"""
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"
[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"
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-03 08:49:36 +02:00
upstream_version = "0.17.3rc0"
2023-04-02 20:15:56 +02:00
ynh_version = "1"
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/"