From 3962a4abb2576bd2a91201e421f8cb5b73d2eecc Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Fri, 10 Feb 2023 19:39:54 +0000 Subject: [PATCH] Include template files --- MANIFEST.in | 4 +--- pyproject.toml | 4 ++-- setup.cfg | 4 ++-- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 8d9db0a..bb3ec5f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1 @@ -include mixins/templates/* -include mixins/static/* -include README.md \ No newline at end of file +include README.md diff --git a/pyproject.toml b/pyproject.toml index 040507c..7b1cf23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ # pyproject.toml [build-system] -requires = ["setuptools>=61.0.0", "wheel"] +requires = ["setuptools", "setuptools-scm"] build-backend = "setuptools.build_meta" [project] name = "django-crud-mixins" -version = "1.0.1" +version = "1.0.2" description = "CRUD mixins for Django class-based views" readme = "README.md" authors = [{ name = "Mark Veidemanis", email = "m@zm.is" }] diff --git a/setup.cfg b/setup.cfg index 938e372..7850da1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,10 +2,10 @@ name = mixins [options] +packages = find: zip_safe = True include_package_data = True [options.package_data] -mixins = templates/*, static/* +templates = *.html * = README.md -