Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
robmarkcole committed Jan 22, 2019
1 parent da85a01 commit 41059e8
Show file tree
Hide file tree
Showing 6 changed files with 106 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ bin-release/

# Other files and folders
.settings/
.ipynb_checkpoints

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

1 change: 1 addition & 0 deletions deepstack/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Init file for DeepStack."""
39 changes: 39 additions & 0 deletions development/development.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Placeholder for development and debugging"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup, find_packages

VERSION = "0.1"

REQUIRES = ["requests"]

setup(
name="deepstack-python",
version=VERSION,
url="https://github.com/robmarkcole/deepstack-python",
author="Robin Cole",
author_email="robmarkcole@gmail.com",
description="Unofficial python API for DeepStack",
install_requires=REQUIRES,
packages=find_packages(),
license="Apache License, Version 2.0",
python_requires=">=3.5",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)
1 change: 1 addition & 0 deletions tests/test_deepstack.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Placeholder
39 changes: 39 additions & 0 deletions usage.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Placeholder for usage"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

0 comments on commit 41059e8

Please sign in to comment.