-
-
Notifications
You must be signed in to change notification settings - Fork 311
/
setup.py
29 lines (28 loc) · 1.03 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 setuptools import setup
from setuptools import find_packages
setup(name='elephas',
version='3.2.0',
description='Deep learning on Spark with Keras',
url='http://github.com/maxpumperla/elephas',
download_url='https://github.com/maxpumperla/elephas/tarball/3.2.0',
author='Daniel Cahall',
author_email='[email protected]',
install_requires=['cython',
'tensorflow>=2,!=2.2.*',
'flask',
'h5py==3.3.0',
'pyspark<3.4'],
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'
])