Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[tool.poetry]
name = "loggingplus"
version = "0.1.0"
description = "Personal logging utils library"
authors = ["VarSamLewis"]
readme = "README.md"
packages = [{include = "loggingplus", from = "src"}]

[tool.poetry.dependencies]
python = "^3.8"

[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
3 changes: 3 additions & 0 deletions src/loggingplus/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""LoggingPlus - Personal logging utils library."""

__version__ = "0.1.0"
1 change: 1 addition & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Tests for LoggingPlus."""
8 changes: 8 additions & 0 deletions tests/test_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""Test version information."""

from loggingplus import __version__


def test_version():
"""Test that version is defined."""
assert __version__ == "0.1.0"