~piotr-machura/plainsync-common

dae87d1a4c43cd9c58e6a9e82e3233a292827e1e — Piotr Machura 2 years ago 32aa26a master
Fix exports
7 files changed, 8 insertions(+), 1 deletions(-)

D __init__.py
A common/__init__.py
R message.py => common/message.py
R request.py => common/request.py
R response.py => common/response.py
R transfer.py => common/transfer.py
M pyproject.toml
D __init__.py => __init__.py +0 -1
@@ 1,1 0,0 @@
"""Libraries used by the client and the server."""

A common/__init__.py => common/__init__.py +5 -0
@@ 0,0 1,5 @@
"""Libraries used by the client and the server."""
from . import message
from . import request
from . import response
from . import transfer

R message.py => common/message.py +0 -0
R request.py => common/request.py +0 -0
R response.py => common/response.py +0 -0
R transfer.py => common/transfer.py +0 -0
M pyproject.toml => pyproject.toml +3 -0
@@ 4,6 4,9 @@ version = "0.1.0"
description = "Plainsync protocol specification"
authors = ["Piotr Machura <me@piotr-machura.com>"]
license = "MIT"
packages = [
    { include = "common" }
]

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