Skip to content

Commit 41059e8

Browse files
committed
Initial
1 parent da85a01 commit 41059e8

File tree

6 files changed

+106
-0
lines changed

6 files changed

+106
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ bin-release/
66

77
# Other files and folders
88
.settings/
9+
.ipynb_checkpoints
910

1011
# Executables
1112
*.swf
@@ -16,3 +17,4 @@ bin-release/
1617
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
1718
# should NOT be excluded as they contain compiler settings and other important
1819
# information for Eclipse / Flash Builder.
20+

deepstack/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Init file for DeepStack."""

development/development.ipynb

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
}

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
)

tests/test_deepstack.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Placeholder

usage.ipynb

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
}

0 commit comments

Comments
 (0)