forked from ofri/Open-Knesset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.14 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
from setuptools import setup, find_packages
install_requires = [
'python-openid',
# 'python-yadis',
'oauth',
'django-tagging',
'simplejson',
'South',
'pyth',
'django-debug-toolbar',
'feedparser',
'pil',
'django-pagination',
'django-piston',
'django-extensions',
'python-memcached',
'BeautifulSoup',
'nose',
'django-nose',
]
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'],
)