-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (22 loc) · 862 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
from distutils.core import setup
setup(
name='sap-document-classification-client',
packages=['sap_document_classification_client'],
version='0.1.3',
license='apache-2.0',
description='Python client library for convenient usage of SAP Document Classification service REST API',
author='Alexander Bolshakov',
author_email='alexander.bolshakov@sap.com',
url='https://github.com/sap/document-classification-client',
download_url='https://github.com/sap/document-classification-client/archive/v_01.tar.gz',
keywords=['business', 'document', 'classification', 'machine learning', 'SAP'],
install_requires=[
'requests==2.22.0'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3'
],
)