aztk/setup.py

19 строки
624 B
Python
Исходник Обычный вид История

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',
'bin/spark-cluster-ssh',
'bin/spark-cluster-get',
'bin/spark-cluster-list',
2017-04-18 19:17:53 +03:00
'bin/spark-app-submit'],
zip_safe=False)