From f6737b0d057d02d3cfe5b83b84f9ece214a11b21 Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Tue, 21 May 2024 15:51:17 -0600 Subject: [PATCH] move init, add tweek --- __init__.py | 1 - protobuf/__init__.py | 1 + pyproject.toml | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 __init__.py create mode 100644 protobuf/__init__.py diff --git a/__init__.py b/__init__.py deleted file mode 100644 index 60ea0db..0000000 --- a/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from protobuf.python import * diff --git a/protobuf/__init__.py b/protobuf/__init__.py new file mode 100644 index 0000000..5de8af2 --- /dev/null +++ b/protobuf/__init__.py @@ -0,0 +1 @@ +from .python import * diff --git a/pyproject.toml b/pyproject.toml index ddd5207..0aff4e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "" authors = ["Mike Kalange "] readme = "README.md" -packages = [{include = "railbird_gql"}] +packages = [{include = "protobuf"}] [tool.poetry.dependencies] python = ">=3.10,<3.12"