forked from Nealelab/cloudtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 673 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='cloudtools',
version='1.1.5',
description='Collection of utilities for working on the Google Cloud Platform.',
url='https://github.com/Nealelab/cloudtools',
author='Liam Abbott',
author_email='labbott@broadinstitute.org',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
keywords='google cloud dataproc spark jupyter hail notebook ipython',
packages=['cloudtools'],
entry_points={
'console_scripts': [
'cluster = cloudtools.__main__:main'
]
},
)