-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 763 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
from setuptools import find_packages
setup(name='sparkflow',
version='0.7.0',
description='Deep learning on Spark with Tensorflow',
keywords = ['tensorflow', 'spark', 'sparkflow', 'machine learning', 'lifeomic', 'deep learning'],
url='https://github.com/lifeomic/sparkflow',
download_url='https://github.com/lifeomic/sparkflow/archive/0.7.0.tar.gz',
author='Derek Miller',
author_email='dmmiller612@gmail.com',
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
install_requires=['tensorflow', 'flask', 'protobuf', 'requests', 'dill'],
license='MIT',
packages=find_packages(),
zip_safe=False)