django_example_ynh/pyproject.toml

151 lines
4.6 KiB
TOML
Raw Normal View History

2020-12-23 19:53:13 +01:00
[tool.poetry]
name = "django_example_ynh"
2023-08-20 17:18:17 +02:00
version = "0.2.0+ynh2"
description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
2022-11-06 17:33:20 +01:00
authors = ["Jens Diemer <django_example_ynh@jensdiemer.de>"]
2021-09-15 19:16:35 +02:00
homepage = "https://github.com/YunoHost-Apps/django_example_ynh"
2022-12-21 20:26:18 +01:00
license = "GPL-3.0-or-later"
2022-12-21 19:19:37 +01:00
readme = 'README.md'
2020-12-23 19:53:13 +01:00
2022-04-02 20:07:31 +02:00
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/YunoHost-Apps/django_example_ynh/issues"
2020-12-23 19:53:13 +01:00
[tool.poetry.dependencies]
python = ">=3.9,<4.0.0" # Stay with 3.9 until YunoHost used >=Debian 11 (Bullseye)
2022-12-21 19:19:37 +01:00
#
django_example = ">=0.1.0rc0" # https://github.com/jedie/django-example
2022-12-21 19:19:37 +01:00
#
2022-10-04 09:31:24 +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
2023-08-20 17:18:17 +02:00
django_yunohost_integration = {version = ">=0.6.0rc4", extras = ["ynh"]} # https://github.com/YunoHost-Apps/django_yunohost_integration
2020-12-23 19:53:13 +01:00
[tool.poetry.dev-dependencies]
2023-08-20 17:18:17 +02:00
cli-base-utilities = "*" # https://github.com/jedie/cli-base-utilities
2021-09-15 19:16:35 +02:00
bx_py_utils = "*" # https://github.com/boxine/bx_py_utils
bx_django_utils = "*" # https://github.com/boxine/bx_django_utils
2022-12-21 19:19:37 +01:00
tox = "*" # https://github.com/tox-dev/tox
coveralls = "*" # http://github.com/TheKevJames/coveralls-python
darker = "*" # https://github.com/akaihola/pytest-darker
isort = "*" # https://github.com/pycqa/isort
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
tomli = "*" # https://github.com/hukkin/tomli
twine = "*" # https://github.com/pypa/twine
poetry-publish = "*" # https://github.com/jedie/poetry-publish
2020-12-23 19:53:13 +01:00
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
2022-10-04 09:14:04 +02:00
requests = "*" # https://github.com/psf/requests
packaging = "*" # https://github.com/pypa/packagi
beautifulsoup4 = "*" # https://pypi.org/project/beautifulsoup4/
2022-10-04 09:14:04 +02:00
2020-12-23 19:53:13 +01:00
[build-system]
requires = ["poetry-core"]
2020-12-23 19:53:13 +01:00
build-backend = "poetry.core.masonry.api"
2022-08-12 17:56:02 +02:00
2022-04-02 20:07:31 +02:00
[tool.darker]
src = ['.']
revision = "origin/master..."
2022-08-12 17:55:49 +02:00
line_length = 100
2022-04-02 20:07:31 +02:00
verbose = true
skip_string_normalization = true
diff = false
check = false
stdout = false
isort = true
lint = [
"flake8",
]
log_level = "INFO"
2022-08-12 17:55:49 +02:00
2020-12-23 19:53:13 +01:00
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format
atomic=true
2022-04-02 20:07:31 +02:00
profile='black'
2022-12-21 19:19:37 +01:00
skip_glob=[".*", "*/htmlcov/*","*/migrations/*","*/local_test/*"]
known_first_party=['django_example']
2022-08-12 17:55:49 +02:00
line_length=100
2020-12-23 19:53:13 +01:00
lines_after_imports=2
[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
minversion = "6.0"
norecursedirs = ".* .git __pycache__ conf local_test coverage* dist htmlcov"
2020-12-23 19:53:13 +01:00
# sometimes helpfull "addopts" arguments:
# -vv
# --verbose
# --capture=no
# --trace-config
# --full-trace
# -p no:warnings
addopts = """
--reuse-db
--nomigrations
--cov=.
--cov-report term-missing
--cov-report html
--cov-report xml
--no-cov-on-fail
--showlocals
--doctest-modules
--failed-first
--new-first
"""
2022-08-12 17:56:02 +02:00
[tool.coverage.run]
2022-12-21 19:19:37 +01:00
omit = ['.*', '*/tests/*']
2022-08-12 17:56:02 +02:00
2020-12-23 19:53:13 +01:00
[tool.tox]
# https://tox.readthedocs.io/en/latest/example/basic.html#pyproject-toml-tox-legacy-ini
legacy_tox_ini = """
[tox]
isolated_build = True
2022-12-21 20:02:02 +01:00
envlist = py{311,310,39}
2020-12-23 19:53:13 +01:00
skip_missing_interpreters = True
[testenv]
passenv = *
whitelist_externals = make
2020-12-23 19:53:13 +01:00
commands =
2022-08-12 17:56:02 +02:00
make pytest
2020-12-23 19:53:13 +01:00
"""
2022-11-06 17:33:20 +01:00
[manageprojects] # https://github.com/jedie/manageprojects
initial_revision = "da47a1e"
initial_date = 2022-11-06T17:25:53+01:00
cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/"
cookiecutter_directory = "yunohost_django_package"
applied_migrations = [
"4dbd146", # 2022-11-06T17:59:58+01:00
2022-12-21 19:19:37 +01:00
"baf1ebc", # 2022-11-30T21:19:10+01:00
2022-12-21 20:02:02 +01:00
"44aa620", # 2022-12-21T19:59:39+01:00
2022-12-21 20:26:18 +01:00
"b204761", # 2022-12-21T20:25:20+01:00
]
2022-11-06 17:33:20 +01:00
[manageprojects.cookiecutter_context.cookiecutter]
project_name = "Django Example"
full_name = "Jens Diemer"
github_username = "jedie"
author_email = "django_example_ynh@jensdiemer.de"
upstream_pkg_name = "django_example"
upstream_url = "https://github.com/jedie/django-example"
ynh_app_pkg_name = "django_example_ynh"
ynh_app_url = "https://github.com/YunoHost-Apps/django_example_ynh"
bug_tracker_url = "https://github.com/jedie/django-example/issues"
upstream_version = "0.1.0rc0"
ynh_version = "1"
2022-12-21 19:19:37 +01:00
package_description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
2022-12-21 20:26:18 +01:00
license = "GPL-3.0-or-later"
2022-11-06 17:33:20 +01:00
_template = "https://github.com/jedie/cookiecutter_templates/"
_output_dir = "~/repos_ynh/django_example_ynh"