forked from AndrewIngram/django-treebeard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 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
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
import os
from distutils.core import setup
version = '1.62a'
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
]
root_dir = os.path.dirname(__file__)
if not root_dir:
root_dir = '.'
long_desc = open(root_dir + '/README').read()
setup(
name='django-treebeard',
version=version,
url='https://tabo.pe/projects/django-treebeard/',
author='Gustavo Picon',
author_email='[email protected]',
license='Apache License 2.0',
packages=['treebeard', 'treebeard.templatetags'],
package_dir={'treebeard': 'treebeard'},
package_data={'treebeard': ['templates/admin/*.html']},
description='Efficient tree implementations for Django 1.0+',
classifiers=classifiers,
long_description=long_desc,
)