forked from divio/aldryn-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
77 lines (65 loc) · 1.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
from aldryn_django import __version__
if sys.version_info[0] == 2:
# on python2 the backport of subprocess32 is needed
extra_dependencies = (
'subprocess32',
)
else:
extra_dependencies = ()
setup(
name="aldryn-django",
version=__version__,
description='An opinionated Django setup bundled as an Aldryn Addon',
author='Divio AG',
author_email='[email protected]',
url='https://github.com/aldryn/aldryn-django',
packages=find_packages(),
install_requires=(
'aldryn-addons',
'Django==1.8.19',
# setup utils
'dj-database-url',
'dj-email-url',
'dj-redis-url',
'django-cache-url',
'django-appconf',
'django-getenv',
'aldryn-client',
'webservices',
'yurl',
# error reporting
'raven',
'opbeat',
# wsgi server related
'uwsgi',
'dj-static',
# database
'psycopg2',
'structlog',
'click',
# storage
'django-storages',
'boto>=2.40.0',
'djeese-fs',
# security: avoid python insecure platform warnings
'cryptography',
'ndg-httpsclient',
'certifi',
'pyOpenSSL',
# required until https://code.djangoproject.com/ticket/20869 lands
'django-debreach',
# helpers
'aldryn-sites>=0.5.4',
# TODO: should be in (aldryn-)django-cms
'django-reversion<1.9',
) + extra_dependencies,
entry_points='''
[console_scripts]
aldryn-django=aldryn_django.cli:main
''',
include_package_data=True,
zip_safe=False,
)