File tree 5 files changed +40
-3
lines changed
5 files changed +40
-3
lines changed Original file line number Diff line number Diff line change
1
+ zip :
2
+ rm -f deepkit.zip
3
+ zip deepkit.zip deepkit/* .py aetros/utils/* .py README.md setup.cfg setup.py
Original file line number Diff line number Diff line change
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
+ ```
Original file line number Diff line number Diff line change 1
1
keras
2
- tensorflow
2
+ tensorflow-gpu
3
3
image
4
-
5
- simplejson
4
+ deepkit
5
+ simplejson
Original file line number Diff line number Diff line change
1
+ [metadata]
2
+ description-file = README.md
Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments