This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
forked from aldryn/aldryn-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (61 loc) · 1.92 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from aldryn_events import __version__
REQUIREMENTS = [
'aldryn-apphooks-config>=0.4.0',
'aldryn-boilerplates',
'aldryn-common>=0.0.6',
'aldryn-translation-tools>=0.2.1',
'django-appconf',
'django-appdata>=0.2.0',
'django-bootstrap3',
'django-cms>=3.4',
'django-extended-choices',
'django-filer',
'django-parler>=1.6.1',
'django-sortedm2m>=1.2.2',
'django-standard-form>=1.1.1',
'django-tablib',
'djangocms-text-ckeditor',
'python-dateutil',
'six',
'Django>=1.8,<2',
]
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
setup(
name='aldryn-events',
version=__version__,
description='An events app for Aldryn',
author='Divio AG',
author_email='[email protected]',
url='https://github.com/aldryn/aldryn-events',
packages=find_packages(),
license='LICENSE.txt',
platforms=['OS Independent'],
install_requires=REQUIREMENTS,
classifiers=CLASSIFIERS,
long_description=open('README.rst').read(),
include_package_data=True,
zip_safe=False,
)