diff --git a/computational_oceanography_commentary/__init__.py b/computational_oceanography_commentary/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/computational_oceanography_commentary/dummy.py b/computational_oceanography_commentary/dummy.py deleted file mode 100644 index d2b7ac6..0000000 --- a/computational_oceanography_commentary/dummy.py +++ /dev/null @@ -1,3 +0,0 @@ -# Just a dummy function as example -def dummy_foo(a): - return a + 4 diff --git a/computational_oceanography_commentary/tests/test_dummy.py b/computational_oceanography_commentary/tests/test_dummy.py deleted file mode 100644 index c990c94..0000000 --- a/computational_oceanography_commentary/tests/test_dummy.py +++ /dev/null @@ -1,6 +0,0 @@ -import pytest -from computational_oceanography_commentary.dummy import dummy_foo - - -def test_dummy(): - assert dummy_foo(4) == (4 + 4) diff --git a/scripts/setup.sh b/scripts/setup.sh deleted file mode 100755 index e66f5f3..0000000 --- a/scripts/setup.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -# Create a github_repo from the command line...so cool (more here: https://developer.github.com/v3/repos/#create) -# I should probably implement some check if the creation was successful -curl -u 'hainegroup' https://api.github.com/user/repos -d '{"name":"computational_oceanography_commentary", "private":false}' - -# Link local repository to git -git init -git add * -git add .gitignore .stickler.yml .travis.yml -git commit -m 'first commit' -git remote add origin git@github.com:hainegroup/computational_oceanography_commentary.git -git push -u origin master