forked from maxpumperla/elephas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.11 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
from setuptools import setup
from setuptools import find_packages
setup(name='elephas',
version='2.1.0',
description='Deep learning on Spark with Keras',
url='http://github.com/maxpumperla/elephas',
download_url='https://github.com/maxpumperla/elephas/tarball/2.1.0',
author='Daniel Cahall',
author_email='[email protected]',
install_requires=['cython',
'tensorflow>=2,!=2.2.*',
'keras==2.2.5',
'hyperas',
'flask',
'h5py==2.10.0',
'pyspark<3.2'],
extras_require={
'tests': ['pytest', 'pytest-pep8', 'pytest-cov', 'pytest-spark', '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 :: 3'
])