Skip to content

Commit

Permalink
Template source fixes in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danjac committed Apr 2, 2021
1 parent 7382a98 commit 01efb08
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/usr/bin/env python
# Third Party Libraries
from setuptools import setup
from setuptools import find_packages, setup

version = "0.0.41"
version = "0.0.42"

setup(
name="django-turbo-response",
Expand All @@ -16,10 +15,10 @@
license="MIT",
python_requires=">=3.7",
requires=["django (>=3.0)"],
packages=["turbo_response"],
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"turbo_response": ["templates/*.html", "jinja2/*.html"]},
# include_package_data=True,
package_data={"turbo_response": ["templates/**/*.html", "jinja2/**/*.html"]},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
Expand Down

0 comments on commit 01efb08

Please sign in to comment.