From 053473184807fd0a15dc59268022c1e5d5179190 Mon Sep 17 00:00:00 2001 From: Forest Belton <65484+forestbelton@users.noreply.github.com> Date: Mon, 21 Jun 2021 19:54:17 -0400 Subject: [PATCH] Initial commit --- .gitignore | 1 + README.rst | 0 paircd/__init__.py | 1 + pyproject.toml | 15 +++++++++++++++ tests/__init__.py | 0 tests/test_paircd.py | 5 +++++ 6 files changed, 22 insertions(+) create mode 100644 .gitignore create mode 100644 README.rst create mode 100644 paircd/__init__.py create mode 100644 pyproject.toml create mode 100644 tests/__init__.py create mode 100644 tests/test_paircd.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c18dd8d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__/ diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..e69de29 diff --git a/paircd/__init__.py b/paircd/__init__.py new file mode 100644 index 0000000..b794fd4 --- /dev/null +++ b/paircd/__init__.py @@ -0,0 +1 @@ +__version__ = '0.1.0' diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..851d73e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "paircd" +version = "0.1.0" +description = "" +authors = ["Forest Belton <65484+forestbelton@users.noreply.github.com>"] + +[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" diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_paircd.py b/tests/test_paircd.py new file mode 100644 index 0000000..7d0447b --- /dev/null +++ b/tests/test_paircd.py @@ -0,0 +1,5 @@ +from paircd import __version__ + + +def test_version(): + assert __version__ == '0.1.0'