-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (34 loc) · 1.1 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
# coding: utf-8
"""
QuantumBPM Python SDK - DMN evaluation, BPMN orchestration, and external
job workers.
"""
from setuptools import setup, find_packages
NAME = "quantumbpm-sdk"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">= 3.10"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
"python-dateutil >= 2.8.2",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
"PyJWT[crypto] >= 2.8.0",
"simplejson >= 3.19",
"requests >= 2.31.0",
]
setup(
name=NAME,
version=VERSION,
description="QuantumBPM Python SDK - DMN evaluation, BPMN orchestration, and external job workers.",
author="QuantumBPM",
author_email="support@quantumbpm.com",
url="https://quantumbpm.com",
keywords=["quantumbpm", "dmn", "bpmn", "workflow", "feel", "sdk"],
install_requires=REQUIRES,
python_requires=PYTHON_REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description_content_type="text/markdown",
long_description="QuantumBPM Python SDK - DMN evaluation, BPMN orchestration, and external job workers.",
package_data={"quantumbpm": ["py.typed"]},
)