forked from django-cms/cmsplugin-filer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.04 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
from setuptools import find_packages, setup
from cmsplugin_filer_file import __version__
setup(
name="cmsplugin-filer",
version=__version__,
url="http://github.com/divio/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 >= 3.2",
"django-filer >= 2.2",
"django-cms >= 3.10",
"django-sekizai >= 4.1.0",
"easy_thumbnails >= 2.8",
"django-appconf",
"djangocms-attributes-field>=3.0.0",
],
include_package_data=True,
zip_safe=False,
)