From 9304168a87f86dd923c3b641e1e75d40ae0a5500 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Wed, 7 Dec 2016 23:05:01 -0500 Subject: [PATCH] update setup and readme --- README.rst | 9 +++++++-- setup.py | 8 ++++---- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 8e71fa5..510b344 100644 --- a/README.rst +++ b/README.rst @@ -1,11 +1,13 @@ 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. 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 @@ -13,9 +15,12 @@ TODO More Tests 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 ========= +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 diff --git a/setup.py b/setup.py index 1d53b47..10e2cde 100644 --- a/setup.py +++ b/setup.py @@ -10,13 +10,13 @@ except ImportError: setup( name="django-dbfilestorage", - version="0.0.1", + version="0.0.2", description="Database backed file storage for testing.", long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.", author="Tyrel Souza", - author_email="john.doe@example.com", - url="https://gitlab.com/tyrelsouza/django-dbfilestorage", - download_url="https://gitlab.com/tyrelsouza/django-dbfilestorage.git", + author_email="tyrelsouza@gmail.com", + url="https://github.com/tyrelsouza/django-dbfilestorage", + download_url="https://github.com/tyrelsouza/django-dbfilestorage.git", license="MIT License", packages=[ "dbfilestorage",