forked from dbrgn/cmsplugin-randomquote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 705 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
version = __import__('cmsplugin_randomquote').__version__
readme = open('README.rst').read()
setup(
name = 'cmsplugin-randomquote',
version = version,
description = 'Random quote plugin for the django CMS.',
long_description=readme,
author = 'Danilo Bargen',
author_email = 'gezuru@gmail.com',
url = 'http://github.com/gwrtheyrn/cmsplugin-randomquote',
license='MIT',
keywords='django django-cms cms plugin quotes testimonials',
packages = find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'django-cms>=2.1',
'django>=1.2',
'django-sekizai>=0.7'
]
)