forked from nimbis/cmsplugin-newsplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 970 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
#!/usr/bin/env python
from setuptools import find_packages, setup
# setup the project
setup(
name='cmsplugin-newsplus',
version='0.1.10',
description='Simple news plugin for django-cms 3.x',
long_description=open('README.rst').read(),
author='Nimbis Services, Inc.',
author_email='[email protected]',
url='https://github.com/nimbis/cmsplugin-newsplus/',
packages=find_packages(exclude=["tests", ]),
license='BSD',
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,
install_requires=[
'Django',
'django-cms >= 2.4',
'djangocms-text-ckeditor >= 2.0',
'Pillow',
],
zip_safe=False
)