forked from scoursen/django-softdelete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 814 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(name='django-softdelete',
version='0.9.2',
description='Soft delete support for Django ORM, with undelete.',
author='Steve Coursen, Muhammad Asif',
author_email='[email protected], [email protected]',
maintainer='Steve Coursen, Muhammad Asif',
maintainer_email='[email protected], [email protected]',
license="BSD",
zip_safe=True,
url="https://github.com/d3corator/django-softdelete",
packages=find_packages(),
install_requires=['setuptools','wheel','six'],
include_package_data=True,
setup_requires=['setuptools_hg',],
classifiers=[
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Environment :: Web Environment',
]
)