From bae292a96d1d73a342227bac4a9b3e9074e4bc8d Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Thu, 17 Aug 2023 18:29:15 +0200 Subject: [PATCH] Update from project template --- .gitignore | 1 + inventory/__init__.py | 6 +++++- pyproject.toml | 8 ++++++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index de6bca2..4203487 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ __pycache__ !.editorconfig !.flake8 !.gitignore +!.gitkeep # for django-dbbackup /backups/ diff --git a/inventory/__init__.py b/inventory/__init__.py index 8cc8128..6ed7489 100644 --- a/inventory/__init__.py +++ b/inventory/__init__.py @@ -1,7 +1,11 @@ """ + PyInventory + Web based management to catalog things including state and location etc. using Python/Django. + created 14.20.2020 by Jens Diemer - :copyleft: 2020-2022 by the PyInventory team, see AUTHORS for more details. + :copyleft: 2020-2023 by the PyInventory team, see AUTHORS for more details. :license: GNU GPL v3 or above, see LICENSE for more details. """ __version__ = '0.19.0' +__author__ = 'Jens Diemer ' diff --git a/pyproject.toml b/pyproject.toml index b751ce1..452fa72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,11 +30,12 @@ dependencies = [ ] [project.optional-dependencies] dev = [ - "manage_django_project>=0.3.0", # https://github.com/jedie/manage_django_project + "manage_django_project>=0.5.0", # https://github.com/jedie/manage_django_project + "cmd2_ext_test", # https://github.com/python-cmd2/cmd2/tree/master/plugins/ext_test "playwright", # https://playwright.dev/python/docs/intro "beautifulsoup4", - + "tblib", # https://github.com/ionelmc/python-tblib "pip-tools", # https://github.com/jazzband/pip-tools/ "tox", # https://github.com/tox-dev/tox @@ -191,3 +192,6 @@ package_url = "https://github.com/jedie/PyInventory" issues_url = "https://github.com/jedie/PyInventory/issues" license = "GPL-3.0-or-later" _template = "https://github.com/jedie/cookiecutter_templates/" +applied_migrations = [ + "8d0ebe1", # 2023-08-17T18:15:10+02:00 +]