-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (35 loc) · 942 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
32
33
34
35
36
37
38
39
#!/usr/bin/env python
from setuptools import setup
REQUIRES = ['Django <= 1.4',
'argparse',
'bunch',
'backports.ssl_match_hostname',
'chardet',
'django-authopenid',
'django-dajax',
'django-dajaxice',
'django-openid',
'kitchen',
'ordereddict',
'psycopg2',
'python-bugzilla',
'python-openid',
'requests',
'six',
'sqlalchemy >= 0.7',
'urllib3']
# Only install python-fedora if kitchen is available
try:
import kitchen
REQUIRES.append("python-fedora")
except:
pass
setup(
name='FAF',
version='0.9-1.20131113',
description='FAF image for OpenShift',
author='ABRT Team',
author_email='[email protected]',
url='https://github.com/mtoman/faf-openshift',
install_requires=REQUIRES,
)