Skip to content

Commit

Permalink
Merge pull request #22 from JonatanMartens/development
Browse files Browse the repository at this point in the history
1.1.1
  • Loading branch information
JonatanMartens authored Sep 12, 2020
2 parents 8244e5d + 33bd23b commit 005533a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ on:
types: [created]

jobs:
deploy:
publish:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@

setuptools.setup(
name="pyzeebe",
version="1.1.0",
version="1.1.1",
author="Jonatan Martens",
author_email="[email protected]",
description="Zeebe client api",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JonatanMartens/pyzeebe",
packages=setuptools.find_packages(),
packages=setuptools.find_packages(exclude=("tests",)),
install_requires=["grpcio~=1.31.0", "protobuf~=3.13.0"],
exclude=["*test", "tests", "*.bpmn"],
keywords="zeebe workflow workflow-engine",
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 005533a

Please sign in to comment.