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'