forked from nathan-osman/django-archive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 829 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
23
24
25
26
from distutils.core import setup
from django_archive import __version__
setup(
name='django_archive_adnn',
version=__version__,
description='Management command for creating compressed archives of DB tables and uploaded media',
author='Nathan Osman, Adnn',
author_email='[email protected]',
url='https://github.com/adnn/django-archive',
license='MIT',
packages=[
'django_archive',
'django_archive.management',
'django_archive.management.commands',
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
],
)