forked from liqd/adhocracy4
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 835 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name='adhocracy4',
version='0.0.0.dev1',
description='Adhocracy 4 core library',
license='AGPL-3+',
author='Liquid Democracy e.V.',
author_email='info@liqd.de',
url='https://liqd.net/en/software/',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
install_requires=[
'bleach',
'Django >=1.8',
'django-allauth',
'django-autoslug',
'django-background-tasks',
'django-ckeditor',
'django-filter',
'django-widget-tweaks',
'djangorestframework >= 3.5, <4.0',
'easy-thumbnails',
'jsonfield',
'python-dateutil',
'python-magic',
'rules',
],
)