forked from kiberpipa/Intranet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (68 loc) · 1.55 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='intranet',
version='0.1',
description="",
long_description="""""",
keywords='',
author='',
author_email='[email protected]',
url='http://www.kiberpipa.org',
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
packages=find_packages(),
classifiers=[
],
install_requires=[
# deprecated
'BeautifulSoup',
'simplejson', # TODO: use json
# other
'reportlab',
'PyExcelerator',
'html2text',
'pytz',
'pygments',
# intranet.org
'python-ldap',
# intranet.www
'python-memcached',
'flickrapi',
'requests',
'python-dateutil',
'django-mailman',
# django stuff
'Django>=1.4',
'Feedjack',
'django-tagging',
'Pillow', # properly distributed PIL
'South',
'django-honeypot',
'django-grappelli',
'django-gravatar2',
'django-chosen',
# development
'django-debug-toolbar',
'django-extensions',
'Werkzeug', # interactive debug
'django-coverage',
'coverage',
'django-tinymce',
# solr
'django-haystack',
'pysolr',
# database
'psycopg2',
'egenix-mx-base',
# commands
'twitter',
# admin
'raven',
'django-reversion',
],
tests_require=[
'nose',
],
)