-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
73 lines (70 loc) · 1.6 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
#!/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='info@kiberpipa.org',
url='http://www.kiberpipa.org',
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
packages=find_packages(),
classifiers=[
],
install_requires=[
# deprecated
'BeautifulSoup',
# other
'PyExcelerator',
'html2text',
'pytz',
'pygments',
'Fabric',
# intranet.org
'python-ldap',
'passlib',
'django-tinymce',
# intranet.www
'python-memcached',
'flickrapi',
'requests',
'python-dateutil',
'python-twitter',
'django-mailman',
'django-akismet-comments',
'icalendar',
'django-activelink',
# django stuff
'Django>=1.4',
'Feedjack',
'django-tagging',
'Pillow', # properly distributed PIL
'South',
'django-honeypot',
'django-grappelli',
'django-gravatar2',
'django-chosen',
# development
'django-coverage',
'coverage',
# solr
'django-haystack',
'pysolr',
# database
'psycopg2',
# admin
'raven',
'django-reversion',
],
tests_require=[
'nose',
],
extras_require={
'develop': ["bpython", 'django-debug-toolbar', 'Werkzeug'],
'deploy': ["gunicorn"],
},
)