Add backend
Signed-off-by: AKP <tom@tdpain.net>
This commit is contained in:
parent
50a9c10326
commit
9d66cdc032
5 changed files with 22 additions and 0 deletions
1
backend/README.md
Normal file
1
backend/README.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Duck Pond backend
|
1
backend/duckpond/__init__.py
Normal file
1
backend/duckpond/__init__.py
Normal file
|
@ -0,0 +1 @@
|
|||
__version__ = '0.1.0'
|
15
backend/pyproject.toml
Normal file
15
backend/pyproject.toml
Normal 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"
|
0
backend/tests/__init__.py
Normal file
0
backend/tests/__init__.py
Normal file
5
backend/tests/test_backend.py
Normal file
5
backend/tests/test_backend.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from backend import __version__
|
||||
|
||||
|
||||
def test_version():
|
||||
assert __version__ == '0.1.0'
|
Reference in a new issue