diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 2fdfc61..ddcbb45 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -26,4 +26,3 @@ jobs: with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} - verbose: true diff --git a/.gitignore b/.gitignore index 773fb07..cee02a9 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,4 @@ venv*/ /proto/ /build/ /tests/res/build/ --/tests/res/build/empty.txt \ No newline at end of file +!/tests/res/build/empty.txt \ No newline at end of file diff --git a/protoplasm/__init__.py b/protoplasm/__init__.py index af6beb2..9cedeed 100644 --- a/protoplasm/__init__.py +++ b/protoplasm/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.0.0-beta.1' +__version__ = '5.0.0-beta.2' __author__ = 'Thordur Matthiasson ' __license__ = 'MIT License' diff --git a/pyproject.toml b/pyproject.toml index 1d26c44..dbf0086 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,6 +35,14 @@ classifiers = [ "Topic :: Utilities" ] +dependencies = [ + "ccptools >= 1.1, <2", + "protobuf >=4.25.3, <5", + "grpcio >=1.62.1, <2", + "grpcio-tools >=1.62.1, <2", + "googleapis-common-protos >=1.63.0, <2" +] + [project.urls] Homepage = "https://github.com/ccpgames/protoplasm" Documentation = "https://github.com/ccpgames/protoplasm/blob/main/README.md"