File tree Expand file tree Collapse file tree 6 files changed +106
-0
lines changed Expand file tree Collapse file tree 6 files changed +106
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ bin-release/
6
6
7
7
# Other files and folders
8
8
.settings /
9
+ .ipynb_checkpoints
9
10
10
11
# Executables
11
12
* .swf
@@ -16,3 +17,4 @@ bin-release/
16
17
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
17
18
# should NOT be excluded as they contain compiler settings and other important
18
19
# information for Eclipse / Flash Builder.
20
+
Original file line number Diff line number Diff line change
1
+ """Init file for DeepStack."""
Original file line number Diff line number Diff line change
1
+ {
2
+ "cells" : [
3
+ {
4
+ "cell_type" : " markdown" ,
5
+ "metadata" : {},
6
+ "source" : [
7
+ " Placeholder for development and debugging"
8
+ ]
9
+ },
10
+ {
11
+ "cell_type" : " code" ,
12
+ "execution_count" : null ,
13
+ "metadata" : {},
14
+ "outputs" : [],
15
+ "source" : []
16
+ }
17
+ ],
18
+ "metadata" : {
19
+ "kernelspec" : {
20
+ "display_name" : " Python 3" ,
21
+ "language" : " python" ,
22
+ "name" : " python3"
23
+ },
24
+ "language_info" : {
25
+ "codemirror_mode" : {
26
+ "name" : " ipython" ,
27
+ "version" : 3
28
+ },
29
+ "file_extension" : " .py" ,
30
+ "mimetype" : " text/x-python" ,
31
+ "name" : " python" ,
32
+ "nbconvert_exporter" : " python" ,
33
+ "pygments_lexer" : " ipython3" ,
34
+ "version" : " 3.6.5"
35
+ }
36
+ },
37
+ "nbformat" : 4 ,
38
+ "nbformat_minor" : 2
39
+ }
Original file line number Diff line number Diff line change
1
+ from setuptools import setup , find_packages
2
+
3
+ VERSION = "0.1"
4
+
5
+ REQUIRES = ["requests" ]
6
+
7
+ setup (
8
+ name = "deepstack-python" ,
9
+ version = VERSION ,
10
+ url = "https://github.com/robmarkcole/deepstack-python" ,
11
+ author = "Robin Cole" ,
12
+ author_email = "robmarkcole@gmail.com" ,
13
+ description = "Unofficial python API for DeepStack" ,
14
+ install_requires = REQUIRES ,
15
+ packages = find_packages (),
16
+ license = "Apache License, Version 2.0" ,
17
+ python_requires = ">=3.5" ,
18
+ classifiers = [
19
+ "Intended Audience :: Developers" ,
20
+ "Natural Language :: English" ,
21
+ "Programming Language :: Python" ,
22
+ "Programming Language :: Python :: 3" ,
23
+ ],
24
+ )
Original file line number Diff line number Diff line change
1
+ # Placeholder
Original file line number Diff line number Diff line change
1
+ {
2
+ "cells" : [
3
+ {
4
+ "cell_type" : " markdown" ,
5
+ "metadata" : {},
6
+ "source" : [
7
+ " Placeholder for usage"
8
+ ]
9
+ },
10
+ {
11
+ "cell_type" : " code" ,
12
+ "execution_count" : null ,
13
+ "metadata" : {},
14
+ "outputs" : [],
15
+ "source" : []
16
+ }
17
+ ],
18
+ "metadata" : {
19
+ "kernelspec" : {
20
+ "display_name" : " Python 3" ,
21
+ "language" : " python" ,
22
+ "name" : " python3"
23
+ },
24
+ "language_info" : {
25
+ "codemirror_mode" : {
26
+ "name" : " ipython" ,
27
+ "version" : 3
28
+ },
29
+ "file_extension" : " .py" ,
30
+ "mimetype" : " text/x-python" ,
31
+ "name" : " python" ,
32
+ "nbconvert_exporter" : " python" ,
33
+ "pygments_lexer" : " ipython3" ,
34
+ "version" : " 3.6.5"
35
+ }
36
+ },
37
+ "nbformat" : 4 ,
38
+ "nbformat_minor" : 2
39
+ }
You can’t perform that action at this time.
0 commit comments