Skip to content
This repository was archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
adding poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
turbomam committed Jan 16, 2022
1 parent 570a950 commit 6d74fd6
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
Empty file added README.rst
Empty file.
1 change: 1 addition & 0 deletions hident/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.1.0'
15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[tool.poetry]
name = "hident"
version = "0.1.0"
description = ""
authors = ["Mark A. Miller <[email protected]>"]

[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"
Empty file added tests/__init__.py
Empty file.
5 changes: 5 additions & 0 deletions tests/test_hident.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from hident import __version__


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

0 comments on commit 6d74fd6

Please sign in to comment.