2017-04-12 11:14:31 +03:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(name='redbull',
|
|
|
|
version='0.1',
|
|
|
|
description='Utility for data engineers or platform developers to Run spark jobs in Azure',
|
|
|
|
url='<tbd>',
|
|
|
|
author='Microsoft',
|
|
|
|
author_email='jiata@microsoft.com',
|
|
|
|
license='MIT',
|
|
|
|
packages=['redbull'],
|
2017-04-13 09:56:43 +03:00
|
|
|
scripts=['bin/spark-cluster-create',
|
|
|
|
'bin/spark-cluster-delete',
|
2017-04-17 02:47:18 +03:00
|
|
|
'bin/spark-cluster-create-user',
|
2017-04-16 06:34:41 +03:00
|
|
|
'bin/spark-cluster-ssh',
|
|
|
|
'bin/spark-cluster-get',
|
|
|
|
'bin/spark-cluster-list',
|
2017-04-18 19:17:53 +03:00
|
|
|
'bin/spark-app-submit'],
|
2017-04-12 11:14:31 +03:00
|
|
|
zip_safe=False)
|