Lets get started

pull/1/head
Gonçalo Valério 1 year ago
parent b3bd8f759d
commit 6fad4c43cc
Signed by: dethos
GPG Key ID: DF557F2BDCC2445E

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

@ -0,0 +1,15 @@
[tool.poetry]
name = "inlinehashes"
version = "0.1.0"
description = ""
authors = ["Gonçalo Valério <gon@ovalerio.net>"]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

@ -0,0 +1,5 @@
from inlinehashes import __version__
def test_version():
assert __version__ == '0.1.0'
Loading…
Cancel
Save