mirror of
https://github.com/django-components/django-components.git
synced 2025-09-10 16:06:18 +00:00
Fix packaging bug: By default submodules are not included.
This commit is contained in:
parent
a5b64b47b7
commit
c5ed0a5d77
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -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(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue