From 316e549ea88a7def4e3d3b97adca33be416e1b29 Mon Sep 17 00:00:00 2001 From: itzaname Date: Sun, 23 Oct 2022 15:48:09 -0400 Subject: [PATCH] Add init --- pyproject.toml | 12 ++++++++++++ setup.py | 11 ----------- strafesnet/__init__.py | 1 + 3 files changed, 13 insertions(+), 11 deletions(-) create mode 100644 pyproject.toml delete mode 100644 setup.py create mode 100644 strafesnet/__init__.py diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..dacb280 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,12 @@ +[project] +name = "strafesnet" +version = "1.0" +description = "StrafesNET GRPC" + +[tool.setuptools] +# data to be included is specified in MANIFEST.in +include-package-data = true + +[tool.setuptools.packages] +find = {} + diff --git a/setup.py b/setup.py deleted file mode 100644 index 31ff461..0000000 --- a/setup.py +++ /dev/null @@ -1,11 +0,0 @@ -from setuptools import setup - -setup( - name='strafesnet', - version='master', - packages=['strafesnet'], - description='StrafesNET python grpc modules', - install_requires=[ - "grpcio", - ], -) \ No newline at end of file diff --git a/strafesnet/__init__.py b/strafesnet/__init__.py new file mode 100644 index 0000000..8a3c3e5 --- /dev/null +++ b/strafesnet/__init__.py @@ -0,0 +1 @@ +from datastore_pb2 import datastore_pb2 \ No newline at end of file