-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
49 lines (45 loc) · 1.37 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/python3
import setuptools
with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name="python-drools-sdk",
version="0.0.3",
author="PapiHack",
author_email="mssmbaye@gmail.com",
description="A Drools KIE SERVER client library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PapiHack/python-drools-sdk",
keywords=[
'python', 'drools', 'kie-server',
'python drools sdk', 'python kie-server client',
'python drools client'
],
project_urls={
"Bug Tracker": "https://github.com/PapiHack/python-drools-sdk/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"certifi==2022.12.7",
"charset-normalizer==2.0.6",
"idna==3.2",
"jsons==1.5.1",
"requests==2.26.0",
"typish==1.9.3",
"urllib3==1.26.7",
],
package_dir={"python_drools_sdk": "src"},
packages=[
'python_drools_sdk',
'python_drools_sdk.commands',
'python_drools_sdk.exceptions',
'python_drools_sdk.utils',
'python_drools_sdk.kie',
],
python_requires=">=3.6",
)