forked from pawelmarkowski/cmsplugin-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.09 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 setup, find_packages
from cmsplugin_filer_file import __version__
setup(
name="cmsplugin-filer",
version=__version__,
url='https://github.com/pawelmarkowski/cmsplugin-filer',
license='BSD',
description="django-cms plugins for django-filer",
long_description=open('README.rst').read(),
author='Stefan Foulis',
author_email='stefan.foulis@gmail.com',
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>=2.2,<4.0",
"django-appconf>=1.0.4,<2.0",
"django-cms>=3.7,<4.0",
"django-filer>=1.5.0,<3.0",
"django-sekizai>=1.0.0,<5.0",
"djangocms-attributes-field>=1.1.0,<3.0",
"easy_thumbnails>=2.6.0,<3.0",
],
include_package_data=True,
zip_safe=False,
)