forked from pawelmarkowski/cmsplugin-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.06 KB
/
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
34
35
36
from setuptools import setup, find_packages
from cmsplugin_filer_file import __version__
setup(
name="clover-cmsplugin-filer",
version=__version__,
url='https://github.com/CloverHealth/cmsplugin-filer',
license='BSD',
description="django-cms plugins for django-filer",
long_description=open('README.rst').read(),
author='Stefan Foulis',
author_email='[email protected]',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
"Django >= 4.2",
"django-filer >= 1.2.0",
"django-cms >= 3.11",
"django-sekizai >= 0.4.2",
"easy_thumbnails >= 1.0",
"django-appconf",
"djangocms-attributes-field>=3.0.0",
],
include_package_data=True,
zip_safe=False,
)