forked from hasadna/obudget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 967 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
from setuptools import setup, find_packages
install_requires = [
'South',
'django-piston',
'django-extensions',
'python-memcached',
'gunicorn',
'psycopg2',
]
setup(
name = "obudget",
version = "0.1",
url = 'http://github.com/hasadna/obudget',
description = "Bringing transperancy to the Israeli Knesset",
author = 'Benny Daon, Imri Goldberg and others',
packages = find_packages('src'),
package_dir = {'': 'src'},
install_requires = install_requires,
classifiers=['Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Natural Language :: Hebrew',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: JavaScript'],
)