From bce25d18edcc141d4f85b4c173464706e76c6f10 Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Sun, 4 Jul 2021 14:29:19 +0200 Subject: [PATCH] Add initial boilerplate. --- README.md | 1 + iscc_core/__init__.py | 1 + pyproject.toml | 17 +++++++++++++++++ tests/__init__.py | 0 tests/test_iscc_core.py | 5 +++++ 5 files changed, 24 insertions(+) create mode 100644 README.md create mode 100644 iscc_core/__init__.py create mode 100644 pyproject.toml create mode 100644 tests/__init__.py create mode 100644 tests/test_iscc_core.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..bc06c41 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# ISCC - Reference Implementation of Core Algorithms diff --git a/iscc_core/__init__.py b/iscc_core/__init__.py new file mode 100644 index 0000000..b794fd4 --- /dev/null +++ b/iscc_core/__init__.py @@ -0,0 +1 @@ +__version__ = '0.1.0' diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c7da68d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[tool.poetry] +name = "iscc-core" +version = "0.1.0" +description = "ISCC: Reference Implementation of standardized core algorithms." +authors = ["Titusz "] +license="BSD 3-clause" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.6" + +[tool.poetry.dev-dependencies] +pytest = "^5.2" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_iscc_core.py b/tests/test_iscc_core.py new file mode 100644 index 0000000..03ea562 --- /dev/null +++ b/tests/test_iscc_core.py @@ -0,0 +1,5 @@ +from iscc_core import __version__ + + +def test_version(): + assert __version__ == '0.1.0'