Skip to content

Commit

Permalink
Good setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
palkeo committed Jul 5, 2013
1 parent ab1eec1 commit f54c5fc
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions setup.py
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 = '[email protected]',
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",
],
)

0 comments on commit f54c5fc

Please sign in to comment.