-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
39 lines (36 loc) · 877 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
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
install_requires = ['Django',
'django-plugins',
'python-mimeparse',
'django-tastypie==0.13.3',
'email_reply_parser',
'flufl.bounce',
'django-markdown-deux',
'requests',
'django-extensions',
'django-haystack',
'pyelasticsearch',
'celery',
'pyyaml',
'django-celery',
'django-autoslug',
'pytz>=2013b',
'popit-django',
'django-admin-bootstrapped',
'django-object-actions',
'unidecode']
setup(
name='write-it',
version='0.0.1',
url='http://writeit.ciudadanointeligente.org',
author='Fundación Ciudadano Inteligente',
author_email='[email protected]',
description="",
packages=find_packages(exclude=["writeit", "manage", "test"]),
include_package_data=True,
install_requires=install_requires,
zip_safe=False,
license='License',
)