forked from honzakral/django-threadedcomments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (33 loc) · 1.19 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
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,
'install_requires': ['setuptools'],
'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',
],
}
from sys import version_info
if version_info[1] >= 4:
kwargs['package_data'] = {'threadedcomments' : ['templates/comment_utils/*.txt','templates/threadedcomments/*.html','templates/threadedcomments_base.html']}
setup(**kwargs)