forked from django-blog-zinnia/zinnia-threaded-comments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (31 loc) · 1.13 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
39
40
"""Setup script for zinnia-threaded-comments"""
from setuptools import setup
from setuptools import find_packages
__version__ = '0.1'
__license__ = 'BSD License'
__author__ = 'Fantomas42'
__email__ = '[email protected]'
__url__ = 'https://github.com/Fantomas42/zinnia-threaded-comments'
setup(
name='zinnia-threaded-comments',
version=__version__,
description='Threaded comments for django-blog-zinnia',
long_description=open('README.rst').read(),
keywords='django, blog, weblog, zinnia, comments, threaded',
author=__author__,
author_email=__email__,
url=__url__,
packages=find_packages(exclude=['demo_zinnia_threaded_comments']),
classifiers=[
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules'],
license=__license__,
include_package_data=True,
zip_safe=False
)