forked from Fantomas42/django-blog-zinnia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (29 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
import os
from setuptools import setup, find_packages
import zinnia
setup(name='django-blog-zinnia',
version=zinnia.__version__,
description='A clear and powerfull weblog application powered with Django',
long_description=open(os.path.join('README.rst')).read(),
keywords='django, blog',
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',
'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=['django-tagging',
'django-mptt',
'akismet',
'BeautifulSoup',
])