forked from maxpumperla/elephas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 1.08 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
from __future__ import absolute_import
from setuptools import setup
from setuptools import find_packages
setup(name='elephas',
version='0.4.3',
description='Deep learning on Spark with Keras',
url='http://github.com/maxpumperla/elephas',
download_url='https://github.com/maxpumperla/elephas/tarball/0.4.3',
author='Max Pumperla',
author_email='[email protected]',
install_requires=['cython', 'tensorflow', 'keras', 'hyperas', 'flask', 'six', 'pyspark'],
extras_require={
'java': ['pydl4j>=0.1.3'],
'tests': ['pytest', 'pytest-pep8', 'pytest-cov', 'mock']
},
packages=find_packages(),
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
])