forked from logicalclocks/hops-util-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (63 loc) · 1.94 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
from setuptools import setup, find_packages
exec(open('hops/version.py').read())
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf8').read() #python3
except:
return open(os.path.join(os.path.dirname(__file__), fname)).read() #python2
setup(
name='hops',
version=__version__,
install_requires=[
'numpy',
'pandas',
'pyjks',
'pathlib',
'pyhopshive[thrift]',
'confluent-kafka',
'hops-petastorm',
'opencv-python',
'boto3',
'pyopenssl',
'idna',
'cryptography',
'pyarrow==0.14.1',
'dnspython==1.16.0'
],
extras_require={
'pydoop': ['pydoop'],
'tf': ['tensorflow'],
'tf_gpu': ['tensorflow-gpu'],
'docs': [
'sphinx',
'sphinx-autobuild',
'recommonmark',
'sphinx_rtd_theme',
'jupyter_sphinx_theme'
],
'test': [
'mock',
'pytest',
],
'spark': ['pyspark==2.4.3'],
'plotting': ['matplotlib', 'seaborn'],
'pynvm': ['nvidia-ml-py']
},
author='Robin Andersson',
author_email='[email protected]',
description='Client library for interacting with Hopsworks, a full-stack platform for scale-out data science.',
license='Apache License 2.0',
keywords='Hops, Hadoop, TensorFlow, Spark',
url='https://github.com/logicalclocks/hops-util-py',
download_url='http://snurran.sics.se/hops/hops-util-py/hops-' + __version__ + '.tar.gz',
packages=find_packages(exclude=['tests']),
long_description=read('README.rst'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
]
)