-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 762 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (18 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='Asknion',
version='1.0',
description='OpenShift Python-2.7 Community Cartridge based application',
author='Ahmad AbdArrahman',
author_email='ahmad.a.arrahman@gmail.com',
url='http://www.python.org/sigs/distutils-sig/',
# Uncomment one or more lines below in the install_requires section
# for the specific client drivers/modules your application needs.
install_requires=['greenlet',
'gevent',
'Django<=1.4',
'python-memcached>=1.31',
# 'mysql-python',
# 'psycopg2',
# 'pymongo',
],
)