-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
81 lines (68 loc) · 1.9 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
78
79
80
81
#!/usr/bin/env python
from setuptools import find_packages, setup
from aldryn_django import __version__
REQUIREMENTS = [
'aldryn-addons',
'Django==4.2.16',
# setup utils
'dj-database-url',
'dj-email-url',
'dj-redis-url',
'django-cache-url',
'django-getenv',
'aldryn-client',
'furl',
# error reporting
'aiocontextvars',
'sentry-sdk',
# wsgi server related
'uwsgi',
# database
'psycopg2',
# storage
'django-storage-url',
'django-storages[boto3]',
'django-storages[azure]',
# helpers
'click',
'aldryn-sites>=0.5.6',
'easy-thumbnails>=2.2',
]
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 4.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
]
setup(
name='aldryn-django',
version=__version__,
author='Divio AG',
author_email='info@divio.ch',
url='https://github.com/divio/aldryn-django',
license='BSD-3-Clause',
description='An opinionated Django setup bundled as an Aldryn Addon',
long_description=open('README.rst').read(),
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
classifiers=CLASSIFIERS,
test_suite='tests.settings.run',
entry_points='''
[console_scripts]
aldryn-django=aldryn_django.cli:main
''',
)