-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
49 lines (43 loc) · 1.45 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
48
49
from setuptools import find_packages, setup
import djangocms_versioning_filer
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
]
INSTALL_REQUIREMENTS = [
'Django>=3.2,<5.0',
'django-cms',
'django-filer>=1.5.0',
]
setup(
name='djangocms-versioning-filer',
author='Divio AG',
author_email='[email protected]',
url='http://github.com/divio/djangocms-versioning-filer',
license='BSD',
version=djangocms_versioning_filer.__version__,
description=djangocms_versioning_filer.__doc__,
long_description=open('README.rst').read(),
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIREMENTS,
packages=find_packages(),
include_package_data=True,
test_suite='test_settings.run',
)