forked from django-mptt/django-mptt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (24 loc) · 1.06 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
#!/usr/bin/env python
from distutils.core import setup
# Dynamically calculate the version based on mptt.VERSION
version_tuple = __import__('mptt').VERSION
version = ".".join([str(v) for v in version_tuple])
setup(
name = 'django-mptt',
description = '''Utilities for implementing Modified Preorder Tree Traversal
with your Django Models and working with trees of Model instances.''',
version = version,
author = 'Craig de Stigter',
author_email = '[email protected]',
url = 'http://github.com/django-mptt/django-mptt',
packages=['mptt', 'mptt.templatetags'],
package_data={'mptt': ['templates/admin/*', 'locale/*/*/*.*']},
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',
'Topic :: Utilities'],
)