Merge pull request #22 from MELScience/issue17

Added templates and static folders
This commit is contained in:
Swen Kooij 2017-06-20 18:03:11 +03:00 committed by GitHub
commit e5e3068835
3 changed files with 5 additions and 2 deletions

View File

@ -1,2 +1,5 @@
include LICENSE include LICENSE
include README.rst include README.rst
recursive-include localized_fields/static *
recursive-include localized_fields/templates *
recursive-exclude tests *

View File

@ -1 +1 @@
django-postgres-extra==1.4 django-postgres-extra==1.11

View File

@ -8,7 +8,7 @@ with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
setup( setup(
name='django-localized-fields', name='django-localized-fields',
version='4.1', version='4.1',
packages=find_packages(), packages=find_packages(exclude=['tests']),
include_package_data=True, include_package_data=True,
license='MIT License', license='MIT License',
description='Implementation of localized model fields using PostgreSQL HStore fields.', description='Implementation of localized model fields using PostgreSQL HStore fields.',