From 29b191137590df1f5dd9e800492a3a0a57f3add6 Mon Sep 17 00:00:00 2001 From: David Barnes <barnesdavidj@gmail.com> Date: Tue, 12 Jul 2022 19:14:07 -0400 Subject: [PATCH] Update description in setup and toml file. Remove commented asyncio line. --- pyproject.toml | 3 ++- runpytests.py | 2 +- setup.cfg | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 95ee358..f170a15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta:__legacy__" [project] name = "django-adminlte2-pdq" version = "0.1.0" -description = "A Django app that takes all of the work out of making a beautiful and functional web application using the AdminLTE2 theme." +description = "A Django app that takes all of the work out of making a beautiful and functional web application pretty darn quickly (PDQ) using the AdminLTE2 theme." readme = "README.md" authors = [{ name = "David Barnes", email = "barnesdavidj@gmail.com" }] license = { file = "LICENSE" } @@ -35,6 +35,7 @@ keywords = [ "adminlte2", "django", "fast", + "pdq", "rapid", "speed", "style", diff --git a/runpytests.py b/runpytests.py index 844ce4b..3617919 100755 --- a/runpytests.py +++ b/runpytests.py @@ -10,7 +10,7 @@ def runtests(): """Run tests""" os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tests.settings') os.environ.setdefault('PYTHONPATH', ROOT_DIR) - argv = ['pytest'] + sys.argv[1:] # + ['--asyncio-mode=auto'] + argv = ['pytest'] + sys.argv[1:] subprocess.run(argv, check=True) diff --git a/setup.cfg b/setup.cfg index cc90424..b58fb21 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] name = django-adminlte2-pdq version = 0.1 -description = A Django app that takes all of the work out of making a beautiful and functional web application using the AdminLTE2 theme. +description = A Django app that takes all of the work out of making a beautiful and functional web application pretty darn quickly (PDQ) using the AdminLTE2 theme. long_description = file: README.md url = https://github.com/DJBarnes/django-adminlte2-pdq author = David Barnes -- GitLab