-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 875 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
from setuptools import setup, find_packages
setup(
name='cmsplugin-search',
version='0.1',
description='Search form plugin (and utils) for Django CMS Search app',
author='Alban Tiberghien',
author_email='[email protected]',
url='http://github.com/atibergien/cmsplugin-search',
packages=find_packages(),
install_requires=[
'django-cms-search',
],
keywords='search form django cms django-cms haystack plugin',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
)