forked from ryanbagwell/django-cms-named-menus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 746 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
#/usr/bin/env python
import codecs
import os
from setuptools import setup, find_packages
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
setup(
name='django-cms-named-menus',
version='0.1.12',
description='Allows you to add named menus like Wordpress',
long_description=read(os.path.join(os.path.dirname(__file__), 'README.rst')),
author='Ryan Bagwell',
author_email='[email protected]',
license='BSD',
url='https://github.com/ryanbagwell/django-cms-named-menus/',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'Django>=1.6',
'django-cms>=3.0',
'jsonfield>=1.0.0',
'django-autoslug==1.7.2',
],
)