Fix packaging bug: By default submodules are not included.

This commit is contained in:
Emil Stenström 2020-07-03 08:24:59 +02:00
parent a5b64b47b7
commit c5ed0a5d77

View file

@ -1,13 +1,13 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import os import os
from setuptools import setup from setuptools import find_packages, setup
VERSION = '0.2.3' VERSION = '0.2.3'
setup( setup(
name='django_reusable_components', name='django_reusable_components',
packages=["django_components"], packages=find_packages(exclude=["tests"]),
version=VERSION, version=VERSION,
description='A way to create simple reusable template components in Django.', description='A way to create simple reusable template components in Django.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),