-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
palkeo
committed
Jul 5, 2013
1 parent
ab1eec1
commit f54c5fc
Showing
1 changed file
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,23 @@ | ||
from distutils.core import setup | ||
|
||
version = "0.1.1" | ||
|
||
setup( | ||
name = 'django-safedelete', | ||
packages = ['django-safedelete'], | ||
version = '0.1', | ||
version = version, | ||
description = 'Make you objects invisible instead of deleting them from your database.', | ||
author = 'Korantin Auguste', | ||
author_email = 'contact@palkeo.com', | ||
url = 'https://github.com/makinacorpus/django-safedelete', | ||
download_url = 'https://github.com/makinacorpus/django-safedelete/tarball/0.1', | ||
download_url = 'https://github.com/makinacorpus/django-safedelete/tarball/%s' % version, | ||
keywords = ['django', 'delete', 'safedelete', 'softdelete'], | ||
classifiers = [], | ||
classifiers = [ | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 2.7", | ||
"Development Status :: 4 - Beta", | ||
], | ||
) |