-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (26 loc) · 1019 Bytes
/
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
"""Setup script for zinnia-theme-bootstrap"""
from setuptools import setup
from setuptools import find_packages
import zinnia_bootstrap
setup(
name='zinnia-theme-bootstrap3',
version=zinnia_bootstrap3.__version__,
description='Bootstrap 3.0 theme for django-blog-zinnia',
long_description=open('README.rst').read(),
keywords='django, blog, weblog, zinnia, theme, skin, bootstrap',
author=zinnia_bootstrap3.__author__,
author_email=zinnia_bootstrap3.__email__,
packages=find_packages(),
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_bootstrap3.__license__,
include_package_data=True,
zip_safe=False
)