forked from christianlent/django-softdelete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 705 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='django-softdelete',
version='0.8.0',
description='Soft delete support for Django ORM, with undelete.',
author='Steve Coursen',
author_email='smcoursen@gmail.com',
maintainer='Steve Coursen',
maintainer_email='smcoursen@gmail.com',
license="BSD",
url="https://github.com/scoursen/django-softdelete",
packages=find_packages(),
install_requires=['setuptools',],
include_package_data=True,
setup_requires=['setuptools_hg',],
classifiers=[
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Environment :: Web Environment',
]
)