Skip to content

Commit

Permalink
add content of README.md as long description
Browse files Browse the repository at this point in the history
  • Loading branch information
vzickner committed Nov 7, 2023
1 parent 304d2c9 commit 4d130db
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
from setuptools import find_packages, setup

# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='flowable.external-worker-client',
packages=find_packages(include=['flowable.external-worker-client']),
version='1.0.dev1',
description='Flowable External Worker Library to connect Python code to Flowable using an external worker.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Flowable',
license='',
install_requires=['requests'],
Expand Down

0 comments on commit 4d130db

Please sign in to comment.