Add backend

Signed-off-by: AKP <tom@tdpain.net>
This commit is contained in:
akp 2022-10-29 13:10:10 +01:00
parent 50a9c10326
commit 9d66cdc032
No known key found for this signature in database
GPG key ID: AA5726202C8879B7
5 changed files with 22 additions and 0 deletions

1
backend/README.md Normal file
View file

@ -0,0 +1 @@
# Duck Pond backend

View file

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

15
backend/pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[tool.poetry]
name = "duckpond"
version = "0.1.0"
description = ""
authors = ["AKP <abi@tdpain.net>"]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

View file

View file

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