-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.29 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
44
45
46
#! /usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
import sys
# python2 and python3 support
try:
reload
except NameError:
# py3k has unicode by default
pass
else:
reload(sys).setdefaultencoding('utf-8')
setup(
name='mojo-navigation',
version='0.0.3',
author='Guillaume Pousseo',
author_email='guillaumepousseo@revsquare.com',
description='Django app managing simple navigation.',
long_description=open('README.rst').read(),
url='http://www.revsquare.com',
license='MIT License',
platforms=['OS Independent'],
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
install_requires=[
'django-mptt==0.7.4',
'django_mptt_admin==0.3.1'
],
)