* add migrations package (#22)

* add migrations
This commit is contained in:
Tyrel Souza 2017-01-20 14:57:29 -05:00 committed by GitHub
parent 09d721df0d
commit 87c8413686
3 changed files with 5 additions and 3 deletions

View File

@ -54,6 +54,7 @@ I will sign everything with 0x769A1BC78A2DDEE2
## CHANGELOG ## CHANGELOG
- 2017-01-20 [Tyrel Souza] Make sure migrations is actually there.
- 2017-01-20 [Tyrel Souza] Split filename and filehash. - 2017-01-20 [Tyrel Souza] Split filename and filehash.
- 2016-12-09 [Tyrel Souza] Add signing key to readme. - 2016-12-09 [Tyrel Souza] Add signing key to readme.
- 2016-12-09 [Tyrel Souza] Update Tests, add some cleanup. - 2016-12-09 [Tyrel Souza] Update Tests, add some cleanup.

View File

@ -54,9 +54,9 @@ author = u'Tyrel Souza'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = u'0.1.4' version = u'0.1.5'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = u'0.1.4' release = u'0.1.5'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -24,7 +24,7 @@ class CleanCommand(Command):
setup( setup(
name="django-dbfilestorage", name="django-dbfilestorage",
version="0.1.4", version="0.1.5",
description="Database backed file storage for testing.", description="Database backed file storage for testing.",
long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.", long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.",
author="Tyrel Souza", author="Tyrel Souza",
@ -34,6 +34,7 @@ setup(
license="MIT License", license="MIT License",
packages=[ packages=[
"dbfilestorage", "dbfilestorage",
"dbfilestorage.migrations",
], ],
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=[