forked from johncrisostomo/django-mango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.13 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
from mango import mango
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = ['mango']
requires = [
'Django==1.4',
'django-social-auth',
'South==0.7.5',
'django-endless-pagination==1.1',
'django_extensions==0.9'
]
setup(
name=mango.__title__,
version=mango.__version__,
description='More Mango, less Django!',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
author=mango.__author__,
author_email='',
url='https://github.com/pypug/django-mango',
packages=packages,
zip_safe=False,
package_data={'': ['LICENSE']},
include_package_data=True,
install_requires=requires,
license=open("LICENSE").read(),
classifiers=(
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
)
)