forked from idlesign/django-sitetree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (28 loc) · 937 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
27
28
29
30
import os
from setuptools import setup
from sitetree import VERSION
f = open(os.path.join(os.path.dirname(__file__), 'README'))
readme = f.read()
f.close()
setup(
name='django-sitetree',
version=".".join(map(str, VERSION)),
description='This reusable Django app introduces site tree, menu and breadcrumbs navigation elements',
long_description=readme,
author="Igor 'idle sign' Starikov",
author_email='[email protected]',
url='http://github.com/idlesign/django-sitetree',
packages=['sitetree'],
include_package_data=True,
install_requires=['setuptools'],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)