Skip to content

Commit

Permalink
fix packaging and add pypi docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danielenricocahall committed Dec 7, 2022
1 parent 711f04c commit d48e7c0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Elephas: Distributed Deep Learning with Keras & Spark
**# Elephas: Distributed Deep Learning with Keras & Spark

![Elephas](https://github.com/danielenricocahall/elephas/blob/master/elephas-logo.png)
![Elephas](https://raw.githubusercontent.com/danielenricocahall/elephas/master/elephas-logo.png)

##

Expand All @@ -20,7 +20,7 @@ applications, including:

Schematically, elephas works as follows.

![Elephas](https://github.com/danielenricocahall/elephas/blob/master/elephas.gif)
![Elephas](https://raw.githubusercontent.com/danielenricocahall/elephas/master/elephas.gif)

Table of content:
* [Elephas: Distributed Deep Learning with Keras & Spark](#elephas-distributed-deep-learning-with-keras-&-spark-)
Expand Down
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
from setuptools import setup
from setuptools import find_packages

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='elephas',
version='3.4.3',
version='3.4.6',
description='Deep learning on Spark with Keras',
url='http://github.com/danielenricocahall/elephas',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/danielenricocahall/elephas',
download_url='https://github.com/danielenricocahall/elephas/tarball/3.4.0',
author='Daniel Cahall',
author_email='danielenricocahall@gmail.com',
iinstall_requires=['cython',
install_requires=['cython',
'tensorflow>=2,!=2.2.*,<=2.10',
'flask',
'h5py==3.3.0',
Expand Down

0 comments on commit d48e7c0

Please sign in to comment.