Browse Source

Initial commit

master
Forest Belton 2 years ago
commit
0534731848
6 changed files with 22 additions and 0 deletions
  1. +1
    -0
      .gitignore
  2. +0
    -0
      README.rst
  3. +1
    -0
      paircd/__init__.py
  4. +15
    -0
      pyproject.toml
  5. +0
    -0
      tests/__init__.py
  6. +5
    -0
      tests/test_paircd.py

+ 1
- 0
.gitignore View File

@ -0,0 +1 @@
__pycache__/

+ 0
- 0
README.rst View File


+ 1
- 0
paircd/__init__.py View File

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

+ 15
- 0
pyproject.toml View File

@ -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"

+ 0
- 0
tests/__init__.py View File


+ 5
- 0
tests/test_paircd.py View File

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

Loading…
Cancel
Save