Lets get started

This commit is contained in:
Gonçalo Valério 2022-03-11 19:04:51 +00:00
parent b3bd8f759d
commit 6fad4c43cc
Signed by: dethos
GPG Key ID: DF557F2BDCC2445E
5 changed files with 21 additions and 0 deletions

0
README.rst Normal file
View File

1
inlinehashes/__init__.py Normal file
View File

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

15
pyproject.toml Normal file
View File

@ -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
tests/__init__.py Normal file
View File

View File

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