-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 677 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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.4.2',
]
)