Gustavo Picon is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againdjango-treebeard / setup.py
- commit
- 0f2a87d336ee
- parent
- f45c785ede80
- parent
- b38bf3705bca
- branch
- 1.6.X
merging from 1.61 tag to 1.6.X branch
1 |
e0fd3cef7992
|
#!/usr/bin/env python |
2 |
e0fd3cef7992
|
|
3 |
474fcdb3db50
|
import os |
4 |
e0fd3cef7992
|
from distutils.core import setup |
5 |
e0fd3cef7992
|
|
6 |
cbcb1e035117
|
version = '1.61' |
7 |
474fcdb3db50
|
|
8 |
8a1ee2c4d019
|
classifiers = [ |
9 |
8a1ee2c4d019
|
"Development Status :: 5 - Production/Stable", |
10 |
8a1ee2c4d019
|
"Intended Audience :: Developers", |
11 |
8a1ee2c4d019
|
"License :: OSI Approved :: Apache Software License", |
12 |
8a1ee2c4d019
|
"Programming Language :: Python", |
13 |
8a1ee2c4d019
|
"Operating System :: OS Independent", |
14 |
8a1ee2c4d019
|
"Topic :: Software Development :: Libraries", |
15 |
8a1ee2c4d019
|
"Topic :: Utilities", |
16 |
8a1ee2c4d019
|
"Environment :: Web Environment", |
17 |
8a1ee2c4d019
|
"Framework :: Django", |
18 |
8a1ee2c4d019
|
] |
19 |
8a1ee2c4d019
|
|
20 |
0ea8c876d307
|
root_dir = os.path.dirname(__file__) |
21 |
91fee50bc94d
|
if not root_dir: |
22 |
91fee50bc94d
|
root_dir = '.' |
23 |
91fee50bc94d
|
long_desc = open(root_dir + '/README').read() |
24 |
e91f3b4f11a0
|
|
25 |
e0fd3cef7992
|
setup( |
26 |
8a1ee2c4d019
|
name='django-treebeard', |
27 |
8a1ee2c4d019
|
version=version, |
28 |
8f1cbe4cdd00
|
url='https://tabo.pe/projects/django-treebeard/', |
29 |
8a1ee2c4d019
|
author='Gustavo Picon', |
30 |
cfd22a1f8bdf
|
author_email='tabo@tabo.pe', |
31 |
8a1ee2c4d019
|
license='Apache License 2.0', |
32 |
66a6725a50c1
|
packages=['treebeard', 'treebeard.templatetags'], |
33 |
0ea8c876d307
|
package_dir={'treebeard': 'treebeard'}, |
34 |
0ea8c876d307
|
package_data={'treebeard': ['templates/admin/*.html']}, |
35 |
82b5e5f6b57e
|
description='Efficient tree implementations for Django 1.0+', |
36 |
8a1ee2c4d019
|
classifiers=classifiers, |
37 |
e91f3b4f11a0
|
long_description=long_desc, |
38 |
e0fd3cef7992
|
) |