forked from vader666/cmsplugin_news3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 765 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_news3',
version='0.0.2',
packages=find_packages(),
url='https://github.com/vader666/cmsplugin_news3',
license='',
author='Anton Chertikovtzev',
author_email='[email protected]',
description='News plugin and application for Django-CMS 3.x',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
install_requires=[
'easy-thumbnails >= 2.0',
'django-filer',
]
)