forked from Fantomas42/django-blog-zinnia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (36 loc) · 1.41 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
41
42
"""Setup script of django-blog-zinnia"""
from setuptools import setup
from setuptools import find_packages
import zinnia
setup(
name='django-blog-zinnia',
version=zinnia.__version__,
description='A clear and powerfull weblog application powered with Django',
long_description='\n'.join([open('README.rst').read(),
open('CHANGELOG').read()]),
keywords='django, blog, weblog, zinnia, post, news',
author=zinnia.__author__,
author_email=zinnia.__email__,
url=zinnia.__url__,
packages=find_packages(exclude=['demo']),
classifiers=[
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules'],
license=zinnia.__license__,
include_package_data=True,
zip_safe=False,
install_requires=['beautifulsoup4>=4.3.2',
'django-contrib-comments>=1.5',
'django-mptt>=0.6.1',
'django-tagging>=0.3.4',
'django-xmlrpc>=0.1.5',
'pyparsing>=2.0.3',
'pytz>=2014.10']
)