Initial commit.
This commit is contained in:
commit
a927de7f37
|
@ -0,0 +1 @@
|
||||||
|
__version__ = '0.1.0'
|
|
@ -0,0 +1,11 @@
|
||||||
|
[tool.poetry]
|
||||||
|
name = "check-package"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = ""
|
||||||
|
authors = ["Dorian Pula <dorian.pula@points.com>"]
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "*"
|
||||||
|
|
||||||
|
[tool.poetry.dev-dependencies]
|
||||||
|
pytest = "^3.0"
|
|
@ -0,0 +1,5 @@
|
||||||
|
from check_package import __version__
|
||||||
|
|
||||||
|
|
||||||
|
def test_version():
|
||||||
|
assert __version__ == '0.1.0'
|
Loading…
Reference in New Issue