diff --git a/pyproject.toml b/pyproject.toml index 95ee358e5ceeddf5a9eb52eeef937c25bf006605..f170a15294ce8da25756b22c699497444bc0506d 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 844ce4bff9a0b5d10fdce118e763f2642ddc2229..3617919cfbe3b976d9e422c7cb4a50c4484ac2a1 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 cc90424cfb4a6090d96e6151891dcc3ac3a51aec..b58fb21907610a044a281ccc60a3fa4863db621b 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