forked from django-mptt/django-mptt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 1.15 KB
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
31
32
"""
Django mptt setup file
"""
from setuptools import setup, find_packages
# 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-2',
description = '''Utilities for implementing Modified Preorder Tree
Traversal with your Django Models and working with trees of Model instances.
Requires Django 1.1+''',
version = version,
author = 'Jonathan Buchanan',
author_email = 'craig.ds@gmail.com',
url = 'http://github.com/django-mptt/django-mptt',
install_requires=[
'Django >= 1.1',
],
test_suite="mptt.tests.test_runner.run_tests",
packages=find_packages(exclude=['mptt.tests']),
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'],
)