forked from Nealelab/cloudtools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 800 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
from setuptools import setup
from cloudtools import __version__
setup(name='cloudtools',
version=__version__,
description='Collection of utilities for working on the Google Cloud Platform.',
url='https://github.com/Nealelab/cloudtools',
author='Liam Abbott',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
keywords='google cloud dataproc spark jupyter hail notebook ipython',
packages=['cloudtools'],
install_requires=[
'statistics;python_version<"3.4"',
],
entry_points={
'console_scripts': [
'cluster = cloudtools.__main__:main'
]
},
)