Skip to content

Commit f54c5fc

Browse files
author
palkeo
committed
Good setup.py
1 parent ab1eec1 commit f54c5fc

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

setup.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
from distutils.core import setup
2+
3+
version = "0.1.1"
4+
25
setup(
36
name = 'django-safedelete',
47
packages = ['django-safedelete'],
5-
version = '0.1',
8+
version = version,
69
description = 'Make you objects invisible instead of deleting them from your database.',
710
author = 'Korantin Auguste',
811
author_email = 'contact@palkeo.com',
912
url = 'https://github.com/makinacorpus/django-safedelete',
10-
download_url = 'https://github.com/makinacorpus/django-safedelete/tarball/0.1',
13+
download_url = 'https://github.com/makinacorpus/django-safedelete/tarball/%s' % version,
1114
keywords = ['django', 'delete', 'safedelete', 'softdelete'],
12-
classifiers = [],
15+
classifiers = [
16+
"Framework :: Django",
17+
"Intended Audience :: Developers",
18+
"License :: OSI Approved :: BSD License",
19+
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 2.7",
21+
"Development Status :: 4 - Beta",
22+
],
1323
)

0 commit comments

Comments
 (0)