forked from ofri/Open-Knesset
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 760 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
from setuptools import setup, find_packages
install_requires = [
'python-openid',
'python-yadis',
'oauth',
'django-tagging',
'simplejson',
'whoosh',
'django-haystack',
'South',
'pyth',
'django-debug-toolbar',
'feedparser',
'pil',
'django-pagination',
'django-piston',
'django-extensions',
'python-memcached',
]
setup(
name = "Open-Knesset",
version = "0.1",
url = 'http://github.com/ofri/Open-Knesset',
license = 'GPLv2',
description = "Bringing transperancy to the Israeli Knesset",
author = 'Ofri Raviv and others',
packages = find_packages('src'),
package_dir = {'': 'src'},
install_requires = install_requires,
)