From 00f6b656da99f68ec3c6964942d0d78435c214d9 Mon Sep 17 00:00:00 2001 From: Noah Pendleton <2538614+noahp@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:44:07 -0400 Subject: [PATCH] Deal with some setuptools warnings --- puncover/static/__init__.py | 0 puncover/static/css/__init__.py | 0 puncover/static/fonts/__init__.py | 0 puncover/static/icons/__init__.py | 0 puncover/static/js/__init__.py | 0 puncover/templates/__init__.py | 0 setup.cfg | 2 +- setup.py | 1 + 8 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 puncover/static/__init__.py create mode 100644 puncover/static/css/__init__.py create mode 100644 puncover/static/fonts/__init__.py create mode 100644 puncover/static/icons/__init__.py create mode 100644 puncover/static/js/__init__.py create mode 100644 puncover/templates/__init__.py diff --git a/puncover/static/__init__.py b/puncover/static/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/puncover/static/css/__init__.py b/puncover/static/css/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/puncover/static/fonts/__init__.py b/puncover/static/fonts/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/puncover/static/icons/__init__.py b/puncover/static/icons/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/puncover/static/js/__init__.py b/puncover/static/js/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/puncover/templates/__init__.py b/puncover/templates/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.cfg b/setup.cfg index 224a779..0f94f37 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md \ No newline at end of file +description_file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 7df14ab..6a2788c 100755 --- a/setup.py +++ b/setup.py @@ -61,6 +61,7 @@ def run(self): ], packages=find_packages(exclude=["tests", "tests.*"]), include_package_data=True, + package_data={"": ["static/**", "templates/*"]}, zip_safe=False, entry_points={"console_scripts": ["puncover = puncover.puncover:main"]}, install_requires=requires,