2023-11-01 20:19:13 +01:00
|
|
|
[project]
|
2020-12-19 20:19:06 +01:00
|
|
|
name = "pyinventory_ynh"
|
2023-11-01 20:19:13 +01:00
|
|
|
dynamic = ["version"]
|
|
|
|
description = "Web based management to catalog things including state and location etc."
|
|
|
|
license = {text = "GPL-3.0-or-later"}
|
|
|
|
readme = "README.md"
|
|
|
|
authors = [
|
|
|
|
{name = 'Jens Diemer', email = 'pyinventory_ynh@jensdiemer.de'}
|
|
|
|
]
|
|
|
|
requires-python = ">=3.9" # Stay with 3.9 until YunoHost used >=Debian 11 (Bullseye)
|
|
|
|
dependencies = [
|
|
|
|
"pyinventory", # https://github.com/jedie/PyInventory
|
|
|
|
#
|
|
|
|
# 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[ynh]>=0.6.0", # https://github.com/YunoHost-Apps/django_yunohost_integration
|
|
|
|
#
|
|
|
|
"cli-base-utilities>=0.4.4", # https://github.com/jedie/cli-base-utilities
|
|
|
|
#
|
|
|
|
# indirect depencies, added because we didn't create the requirements.txt with Python <3.11
|
|
|
|
# See: https://github.com/jazzband/pip-tools/issues/1326
|
|
|
|
"async-timeout", # needed by redis for python<=3.11.2
|
|
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"bx_django_utils", # https://github.com/boxine/bx_django_utils
|
|
|
|
"beautifulsoup4", # https://pypi.org/project/beautifulsoup4/
|
|
|
|
"manageprojects>=0.15.0", # https://github.com/jedie/manageprojects
|
|
|
|
"pip-tools", # https://github.com/jazzband/pip-tools/
|
2023-11-26 20:18:24 +01:00
|
|
|
"tblib", # https://github.com/ionelmc/python-tblib
|
2023-11-01 20:19:13 +01:00
|
|
|
"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
|
|
|
|
"safety", # https://github.com/pyupio/safety
|
|
|
|
"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 added because of bug:
|
|
|
|
# https://github.com/pypa/pip/issues/9644 / https://github.com/jazzband/pip-tools/issues/1866
|
|
|
|
# to avoid errors like:
|
|
|
|
# In --require-hashes mode, all requirements must have their versions pinned with ==. These do not: ...
|
|
|
|
"tomli", # Only needed for Python <3.11
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Documentation = "https://github.com/YunoHost-Apps/pyinventory_ynh"
|
|
|
|
Source = "https://github.com/YunoHost-Apps/pyinventory_ynh"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
pyinventory_ynh_app = "pyinventory_ynh.__main__:main"
|
|
|
|
pyinventory_ynh_dev = "pyinventory_ynh.cli.dev:main"
|
2020-12-19 20:19:06 +01:00
|
|
|
|
|
|
|
[build-system]
|
2023-11-01 20:19:13 +01:00
|
|
|
requires = ["setuptools>=61.0", "setuptools_scm>=7.1"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["."]
|
|
|
|
include = ["pyinventory_ynh*"]
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = {attr = "pyinventory_ynh.__version__"}
|
2020-12-29 13:58:40 +01:00
|
|
|
|
|
|
|
|
2022-01-30 15:02:51 +01:00
|
|
|
[tool.darker]
|
|
|
|
src = ['.']
|
2023-11-01 20:19:13 +01:00
|
|
|
# YunoHost apps still use "master" istead of "main", isn't it?
|
2022-01-30 15:02:51 +01:00
|
|
|
revision = "origin/master..."
|
2023-02-19 14:01:54 +01:00
|
|
|
line_length = 119
|
2022-01-30 15:02:51 +01:00
|
|
|
verbose = true
|
2023-08-17 21:55:12 +02:00
|
|
|
color = true
|
2022-01-30 15:02:51 +01:00
|
|
|
skip_string_normalization = true
|
|
|
|
diff = false
|
|
|
|
check = false
|
|
|
|
stdout = false
|
|
|
|
isort = true
|
2023-08-17 21:55:12 +02:00
|
|
|
flynt = true
|
2022-01-30 15:02:51 +01:00
|
|
|
lint = [
|
|
|
|
"flake8",
|
|
|
|
]
|
|
|
|
log_level = "INFO"
|
|
|
|
|
|
|
|
|
2020-12-29 13:58:40 +01:00
|
|
|
[tool.isort]
|
|
|
|
# https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format
|
|
|
|
atomic=true
|
2022-01-30 15:02:51 +01:00
|
|
|
profile='black'
|
2022-12-21 22:21:42 +01:00
|
|
|
skip_glob=[".*", "*/htmlcov/*","*/migrations/*","*/local_test/*"]
|
2023-11-26 20:18:24 +01:00
|
|
|
known_first_party=['pyinventory', 'pyinventory_ynh']
|
2023-02-19 14:01:54 +01:00
|
|
|
line_length=119
|
2020-12-29 13:58:40 +01:00
|
|
|
lines_after_imports=2
|
|
|
|
|
|
|
|
|
2022-09-15 18:16:57 +02:00
|
|
|
[tool.coverage.run]
|
2023-08-17 21:55:12 +02:00
|
|
|
branch = true
|
|
|
|
parallel = true
|
|
|
|
concurrency = ["multiprocessing"]
|
2023-02-19 14:01:54 +01:00
|
|
|
source = ['.']
|
2023-11-26 20:18:24 +01:00
|
|
|
command_line = './dev-cli.py test'
|
2023-11-01 20:19:13 +01:00
|
|
|
disable_warnings = ["couldnt-parse"]
|
2022-09-15 18:16:57 +02:00
|
|
|
|
2023-02-19 14:01:54 +01:00
|
|
|
[tool.coverage.report]
|
2023-08-17 21:55:12 +02:00
|
|
|
omit = ['.*', '*/tests/*']
|
2023-02-19 14:01:54 +01:00
|
|
|
skip_empty = true
|
2023-11-26 20:18:24 +01:00
|
|
|
fail_under = 10
|
2023-08-17 21:55:12 +02:00
|
|
|
show_missing = true
|
|
|
|
exclude_lines = [
|
|
|
|
'if self.debug:',
|
|
|
|
'pragma: no cover',
|
|
|
|
'raise NotImplementedError',
|
|
|
|
'if __name__ == .__main__.:',
|
|
|
|
]
|
2023-02-19 14:01:54 +01:00
|
|
|
|
2022-09-15 18:16:57 +02:00
|
|
|
|
2023-08-17 21:55:12 +02:00
|
|
|
[tool.tox] # https://tox.wiki/en/latest/config.html#pyproject-toml
|
2020-12-29 13:58:40 +01:00
|
|
|
legacy_tox_ini = """
|
|
|
|
[tox]
|
|
|
|
isolated_build = True
|
2023-11-01 20:19:13 +01:00
|
|
|
envlist = py{312,311,310,39}
|
2020-12-29 13:58:40 +01:00
|
|
|
skip_missing_interpreters = True
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
passenv = *
|
2023-08-17 21:55:12 +02:00
|
|
|
skip_install = true
|
2023-11-01 20:19:13 +01:00
|
|
|
commands_pre =
|
|
|
|
pip install -U pip-tools
|
|
|
|
pip-sync requirements.dev.txt
|
2020-12-29 13:58:40 +01:00
|
|
|
commands =
|
2023-11-01 20:19:13 +01:00
|
|
|
{envpython} -m coverage run --context='{envname}'
|
|
|
|
{envpython} -m coverage combine --append
|
|
|
|
{envpython} -m coverage xml
|
|
|
|
{envpython} -m coverage report
|
2020-12-29 13:58:40 +01:00
|
|
|
"""
|
2022-12-21 22:21:42 +01:00
|
|
|
|
|
|
|
|
2023-11-01 20:19:13 +01: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']
|
|
|
|
|
|
|
|
|
2022-12-21 22:21:42 +01:00
|
|
|
[manageprojects] # https://github.com/jedie/manageprojects
|
|
|
|
initial_revision = "b204761"
|
|
|
|
initial_date = 2022-12-21T20:25:20+01:00
|
|
|
|
cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/"
|
|
|
|
cookiecutter_directory = "yunohost_django_package"
|
|
|
|
|
|
|
|
[manageprojects.cookiecutter_context.cookiecutter]
|
|
|
|
project_name = "PyInventory"
|
|
|
|
full_name = "Jens Diemer"
|
|
|
|
github_username = "jedie"
|
|
|
|
author_email = "pyinventory_ynh@jensdiemer.de"
|
|
|
|
upstream_pkg_name = "pyinventory"
|
|
|
|
upstream_url = "https://github.com/jedie/PyInventory"
|
|
|
|
ynh_app_pkg_name = "pyinventory_ynh"
|
|
|
|
ynh_app_url = "https://github.com/YunoHost-Apps/pyinventory_ynh"
|
|
|
|
bug_tracker_url = "https://github.com/jedie/PyInventory/issues"
|
2023-08-22 19:52:36 +02:00
|
|
|
upstream_version = "0.19.2"
|
2022-12-21 22:21:42 +01:00
|
|
|
ynh_version = "1"
|
|
|
|
package_description = "Web based management to catalog things including state and location etc."
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
_template = "https://github.com/jedie/cookiecutter_templates/"
|
2023-08-17 21:55:12 +02:00
|
|
|
applied_migrations = [
|
|
|
|
"877e2ec", # 2023-08-17T20:54:24+02:00
|
2023-08-22 19:52:36 +02:00
|
|
|
"be3f649", # 2023-08-22T19:36:57+02:00
|
2023-11-01 20:19:13 +01:00
|
|
|
"c1a9d97", # 2023-11-01T19:59:17+01:00
|
2023-11-25 15:12:11 +01:00
|
|
|
"0a5d693", # 2023-11-25T15:06:21+01:00
|
|
|
|
"6b89813", # 2023-11-25T15:23:07+01:00
|
2023-11-25 16:01:09 +01:00
|
|
|
"4abd4c0", # 2023-11-25T15:59:31+01:00
|
2023-11-26 20:18:24 +01:00
|
|
|
"2f9fd7b", # 2023-11-26T20:13:32+01:00
|
2023-08-17 21:55:12 +02:00
|
|
|
]
|