initial commit

This commit is contained in:
2021-10-20 00:02:46 +01:00
commit 8884a942c5
7 changed files with 24 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# Tembo
<center><img src="./assets/tembo_logo.png" width="200px"></center>

BIN
assets/tembo_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 KiB

15
pyproject.toml Normal file
View File

@@ -0,0 +1,15 @@
[tool.poetry]
name = "tembo"
version = "0.1.0"
description = ""
authors = ["dtomlinson <dtomlinson@panaetius.co.uk>"]
[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"

1
tembo/__init__.py Normal file
View File

@@ -0,0 +1 @@
__version__ = '0.1.0'

0
tests/__init__.py Normal file
View File

5
tests/test_tembo.py Normal file
View File

@@ -0,0 +1,5 @@
from tembo import __version__
def test_version():
assert __version__ == '0.1.0'