Skip to content

Commit

Permalink
Add initial Poetry commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sw3dish committed Mar 16, 2021
0 parents commit 2186d4f
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 proper_gator/__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 = "proper-gator"
version = "0.1.0"
description = ""
authors = ["Colin Burr <[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_proper_gator.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from proper_gator import __version__


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

0 comments on commit 2186d4f

Please sign in to comment.