Skip to content

Commit ba48f53

Browse files
committedAug 30, 2019
added pypi files
1 parent 042a38d commit ba48f53

File tree

5 files changed

+40
-3
lines changed

5 files changed

+40
-3
lines changed
 

‎Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
zip:
2+
rm -f deepkit.zip
3+
zip deepkit.zip deepkit/*.py aetros/utils/*.py README.md setup.cfg setup.py

‎README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Deepkit Python SDK
2+
3+
This package is necessary to send data from and to Deepkit in Python.
4+
5+
## Installation
6+
7+
```
8+
$ sudo pip install deepkit
9+
10+
# update
11+
$ sudo pip install deepkit --upgrade
12+
```
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
keras
2-
tensorflow
2+
tensorflow-gpu
33
image
4-
5-
simplejson
4+
deepkit
5+
simplejson

‎setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

‎setup.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from setuptools import setup
2+
from setuptools import find_packages
3+
__version__ = '0.1.0'
4+
5+
setup(name='deepkit',
6+
version=__version__,
7+
description='Python SDK for Deepkit',
8+
author='Marc J. Schmidt',
9+
author_email='marc@marcjschmidt.de',
10+
url='https://github.com/deepkit/deepkit-python-sdk',
11+
download_url='https://github.com/deepkit/deepkit-python-sdk/tarball/' + __version__,
12+
license='MIT',
13+
packages=find_packages(),
14+
install_requires=[
15+
'numpy',
16+
'cherrypy>=7.1.0',
17+
'six>=1.11.0',
18+
'Pillow>=4.0.0',
19+
'simplejson>=3.13.2']
20+
)

0 commit comments

Comments
 (0)
Please sign in to comment.