Skip to content

Commit

Permalink
added pypi files
Browse files Browse the repository at this point in the history
  • Loading branch information
marcj committed Aug 30, 2019
1 parent 042a38d commit ba48f53
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
zip:
rm -f deepkit.zip
zip deepkit.zip deepkit/*.py aetros/utils/*.py README.md setup.cfg setup.py
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Deepkit Python SDK

This package is necessary to send data from and to Deepkit in Python.

## Installation

```
$ sudo pip install deepkit
# update
$ sudo pip install deepkit --upgrade
```
6 changes: 3 additions & 3 deletions examples/keras-cifar10/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
keras
tensorflow
tensorflow-gpu
image

simplejson
deepkit
simplejson
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from setuptools import setup
from setuptools import find_packages
__version__ = '0.1.0'

setup(name='deepkit',
version=__version__,
description='Python SDK for Deepkit',
author='Marc J. Schmidt',
author_email='marc@marcjschmidt.de',
url='https://github.com/deepkit/deepkit-python-sdk',
download_url='https://github.com/deepkit/deepkit-python-sdk/tarball/' + __version__,
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'cherrypy>=7.1.0',
'six>=1.11.0',
'Pillow>=4.0.0',
'simplejson>=3.13.2']
)

0 comments on commit ba48f53

Please sign in to comment.