Skip to content

Commit

Permalink
Add initial boilerplate.
Browse files Browse the repository at this point in the history
  • Loading branch information
titusz committed Jul 4, 2021
1 parent d1406b9 commit bce25d1
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ISCC - Reference Implementation of Core Algorithms
1 change: 1 addition & 0 deletions iscc_core/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.1.0'
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[tool.poetry]
name = "iscc-core"
version = "0.1.0"
description = "ISCC: Reference Implementation of standardized core algorithms."
authors = ["Titusz <tp@py7.de>"]
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"
Empty file added tests/__init__.py
Empty file.
5 changes: 5 additions & 0 deletions tests/test_iscc_core.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from iscc_core import __version__


def test_version():
assert __version__ == '0.1.0'

0 comments on commit bce25d1

Please sign in to comment.