-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 900 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
setup(
name='camunda-external-task-client-python3',
version='4.0.1',
author='Deserve Labs',
author_email='[email protected]',
packages=find_packages(exclude=("tests",)),
url='https://github.com/yogeshrnaik/camunda-external-task-client-python3',
license='LICENSE.txt',
description='Camunda External Task Client for Python 3',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
python_requires='>=3.7',
install_requires=[
'requests>=2.24.0'
]
)