Update from project template

pull/147/head
JensDiemer 2023-08-17 18:29:15 +02:00
rodzic 9fba1c0c1e
commit bae292a96d
3 zmienionych plików z 12 dodań i 3 usunięć

1
.gitignore vendored
Wyświetl plik

@ -9,6 +9,7 @@ __pycache__
!.editorconfig
!.flake8
!.gitignore
!.gitkeep
# for django-dbbackup
/backups/

Wyświetl plik

@ -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 <opensource@jensdiemer.de>
: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 <PyInventory@jensdiemer.de>'

Wyświetl plik

@ -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
]