Skip to content

Commit ce3a8c9

Browse files
Using find_packages for template_tags
1 parent 4c56fe7 commit ce3a8c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22
from bootstrapform_jinja.meta import VERSION
33

44
description = """
@@ -48,7 +48,7 @@
4848
'django>=1.9',
4949
'django-jinja>=2.3.1',
5050
],
51-
packages=['bootstrapform_jinja'],
51+
packages=find_packages(),
5252
package_data={'bootstrapform_jinja': template_files},
5353
python_requires='>=3.6',
5454
zip_safe=True,

0 commit comments

Comments
 (0)