forked from jarosenb/djangocms-cascade-ds-compat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.48 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
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
from cmsplugin_cascade import __version__
with open('README.md', 'r') as fh:
long_description = fh.read()
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
]
setup(
name='djangocms-cascade',
version=__version__,
description='Build Single Page Applications using the Django-CMS plugin system',
author='Jacob Rief',
author_email='[email protected]',
url='https://github.com/jrief/djangocms-cascade',
packages=find_packages(exclude=['examples', 'docs', 'tests']),
install_requires=[
'django>=3.2,<5',
'django-classy-tags>=1.0',
'django-cms>=3.10,<4',
'django-entangled>=0.5.3',
'djangocms-text-ckeditor>=4.0',
'django-select2>=7.7',
'requests',
],
license='MIT',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
zip_safe=False,
)