forked from honzakral/django-threadedcomments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.16 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
from sys import version_info
from setuptools import setup, find_packages
kwargs = {
'name': 'django-threadedcomments',
'version': '0.9',
'description': 'A simple yet flexible threaded commenting system.',
'author': 'Eric Florenzano',
'author_email': '[email protected]',
'url': 'http://code.google.com/p/django-threadedcomments/',
'keywords': 'django,pinax,comments',
'license': 'BSD',
'packages': [
'threadedcomments',
'threadedcomments.templatetags',
'threadedcomments.management',
'threadedcomments.management.commands',
],
'include_package_data': True,
'zip_safe': False,
'classifiers': [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
}
if version_info[1] >= 4:
kwargs['package_data'] = {
'threadedcomments' : [
'sql/threadedcomment.mysql.sql',
'fixtures/simple_tree.json',
]
}
setup(**kwargs)