forked from hasadna/Open-Knesset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.23 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
from setuptools import setup, find_packages
install_requires = [
# 'django-piston',
# 'python-yadis',
'BeautifulSoup',
'South',
'django-debug-toolbar',
'django-extensions',
'django-nose',
'django-pagination',
'django-tagging',
'django_compressor',
'feedparser',
'gdata',
'gunicorn',
'mimeparse',
'mimms',
'django-social-auth',
'nose',
'oauth',
'pil',
'pyth',
'python-dateutil',
'python-memcached',
'python-openid',
'vobject',
'django-tastypie',
'django-ratings',
'django-hitcount',
]
setup(
name="Open-Knesset",
version="0.1",
url='http://github.com/ofri/Open-Knesset',
description="Bringing transperancy to the Israeli Knesset",
author='Ofri Raviv and others',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Natural Language :: Hebrew',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: JavaScript'
],
)