Add cx_Oracle requirements to extras_require for the OracleHook
This commit is contained in:
yoziru-desu 2015-09-08 21:19:24 +02:00
Родитель 1c720e419b
Коммит 5fb2b9872c
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -26,9 +26,10 @@ mssql = ['pymssql>=2.1.1', 'unicodecsv>=0.13.0']
hdfs = ['snakebite>=2.4.13']
slack = ['slackclient>=0.15']
crypto = ['cryptography>=0.9.3']
oracle = ['cx_Oracle>=5.1.2']
all_dbs = postgres + mysql + hive + mssql + hdfs
devel = all_dbs + doc + samba + s3 + ['nose'] + slack + crypto
devel = all_dbs + doc + samba + s3 + ['nose'] + slack + crypto + oracle
setup(
name='airflow',
@ -78,6 +79,7 @@ setup(
'samba': samba,
'slack': slack,
'crypto': crypto,
'oracle': oracle,
},
author='Maxime Beauchemin',
author_email='maximebeauchemin@gmail.com',