forked from Brick85/sitemenu
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (24 loc) · 1.09 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
#!/usr/bin/env python
from setuptools import setup
setup(name='django-sitemenu',
version='0.1.5',
description='Nested menu for django projects.',
long_description='Nested menu for django projects. Without MPTT and with drag\'n\'drop sorting.'
'Easy customizable. Looks like simple model for using.',
author='Vital Belikov',
author_email='[email protected]',
packages=['sitemenu', 'sitemenu.templatetags', 'sitemenu.mixins'],
url='https://github.com/Brick85/sitemenu/',
include_package_data=True,
zip_safe=False,
requires=['django(>=1.3)'],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'],
license='New BSD')