commit 8884a942c5c2a2815a1bbc75fb106555402d2055 Author: Daniel Tomlinson Date: Wed Oct 20 00:02:46 2021 +0100 initial commit diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..a119bd2 Binary files /dev/null and b/.DS_Store differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..0050759 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Tembo + +
diff --git a/assets/tembo_logo.png b/assets/tembo_logo.png new file mode 100644 index 0000000..f65ca98 Binary files /dev/null and b/assets/tembo_logo.png differ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..edcc417 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "tembo" +version = "0.1.0" +description = "" +authors = ["dtomlinson "] + +[tool.poetry.dependencies] +python = "^3.7" + +[tool.poetry.dev-dependencies] +pytest = "^5.2" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/tembo/__init__.py b/tembo/__init__.py new file mode 100644 index 0000000..b794fd4 --- /dev/null +++ b/tembo/__init__.py @@ -0,0 +1 @@ +__version__ = '0.1.0' diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_tembo.py b/tests/test_tembo.py new file mode 100644 index 0000000..e36a0f6 --- /dev/null +++ b/tests/test_tembo.py @@ -0,0 +1,5 @@ +from tembo import __version__ + + +def test_version(): + assert __version__ == '0.1.0'