Initial commit.

This commit is contained in:
Dorian 2018-07-12 14:22:04 -04:00
commit a927de7f37
5 changed files with 17 additions and 0 deletions

0
README.rst Normal file
View File

View File

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

11
pyproject.toml Normal file
View File

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

View File

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