-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 901 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 setuptools import setup, find_packages
setup(
name='django-navbar',
version=__import__('navbar').__version__,
description='Reusable django application managing navigation menues with '
'permissions, auto selection and crumbs.',
long_description=open('docs/overview.txt').read(),
author='Doug Napoleone',
author_email='[email protected]',
url='http://code.google.com/p/django-navbar/',
license = 'MIT License',
platforms = ['any'],
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
)