forked from flowable/flowable-external-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 713 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# read the contents of your README file
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='flowable.external-worker-client',
packages=['flowable', 'flowable.external_worker_client'],
version='1.0.2',
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='Apache License, Version 2.0',
install_requires=['requests>=2.27.0'],
extras_require={
'testing': ['pytest', 'vcrpy']
},
)