-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (22 loc) · 771 Bytes
/
setup.py
File metadata and controls
22 lines (22 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='cmsplugin-blog',
version='0.9.0',
description='This is a blog app/plugin for django-cms 2.0',
author='Oyvind Saltvik',
author_email='oyvind@gmail.com',
url='http://github.com/fivethreeo/cmsplugin-blog/',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
install_requires=['simple-translation', 'djangocms-utils', 'django-tagging'],
)