forked from MnogoByte/django-permanent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (28 loc) · 1.29 KB
/
setup.py
File metadata and controls
executable file
·30 lines (28 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='django-permanent',
version='1.0.12',
description='Yet another approach to provide soft (logical) delete or masking (thrashing) django models instead of deleting them physically from db.',
author='Alexander Klimenko',
author_email='alex@erix.ru',
long_description = open('README.rst').read(),
url='https://github.com/meteozond/django-permanent',
packages=find_packages(),
install_requires=["Django>=1.6.0"],
keywords = ['django', 'delete', 'undelete', 'safedelete', 'remove', 'restore', 'softdelete', 'logicaldelete', 'trash'],
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
],
tests_require=["Django>=1.6.0", "django-model-utils"],
test_suite='runtests.runtests',
license="BSD")