update setup and readme

This commit is contained in:
Tyrel Souza 2016-12-07 23:05:01 -05:00
parent 592373d1d3
commit 9304168a87
No known key found for this signature in database
GPG Key ID: 2EECB5087209E6A5
2 changed files with 11 additions and 6 deletions

View File

@ -1,11 +1,13 @@
Django-dbfilestorage Django-dbfilestorage
-------------------- --------------------
.. image:: https://circleci.com/gh/tyrelsouza/django-dbfilestorage/tree/master.svg?style=svg
:target: https://circleci.com/gh/tyrelsouza/django-dbfilestorage/tree/master
Custom file storage for Django that stores file data and content type in the database. Custom file storage for Django that stores file data and content type in the database.
Easy to use for testing when you don't care about a filename, and just want to test file data. Easy to use for testing when you don't care about a filename, and just want to test file data.
Intendted to be used in tests, never in production. Intended to be used in tests, never in production.
TODO TODO
@ -13,9 +15,12 @@ TODO
More Tests More Tests
Different django and different python versions. Different django and different python versions.
Store original filename in a field, maybe?
Use original filename instead, so it honors the "upload_to" parameter.
CHANGELOG CHANGELOG
========= =========
2016-12-07 [Tyrel Souza] Update Readme, move to github, gitlab wasn't functioning properly.
2016-12-07 [Tyrel Souza] Initial commits and basic project setup 2016-12-07 [Tyrel Souza] Initial commits and basic project setup

View File

@ -10,13 +10,13 @@ except ImportError:
setup( setup(
name="django-dbfilestorage", name="django-dbfilestorage",
version="0.0.1", version="0.0.2",
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",
author_email="john.doe@example.com", author_email="tyrelsouza@gmail.com",
url="https://gitlab.com/tyrelsouza/django-dbfilestorage", url="https://github.com/tyrelsouza/django-dbfilestorage",
download_url="https://gitlab.com/tyrelsouza/django-dbfilestorage.git", download_url="https://github.com/tyrelsouza/django-dbfilestorage.git",
license="MIT License", license="MIT License",
packages=[ packages=[
"dbfilestorage", "dbfilestorage",