-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (37 loc) · 1.48 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
# coding: utf-8
"""
Aspose OMR Cloud V5 API
Aspose OMR Cloud V5 API # noqa: E501
OpenAPI spec version: V5
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import sys
from setuptools import setup, find_packages # noqa: H301
NAME = "aspose-omr-cloud"
VERSION = "23.1.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="Python library for communicating with the Aspose.OMR Cloud API",
author="Aspose Pty Ltd",
author_email="aspose.cloud@asposeptyltd.com",
url="https://github.com/aspose-omr-cloud/aspose-omr-cloud-python",
keywords=["aspose", "aspose cloud", "omr", "answer sheet"],
license="MIT",
install_requires=[
'scikit-learn',
],
packages=find_packages(),
include_package_data=True,
long_description="""\
Aspose.OMR for Cloud is a REST API that helps you to perform optical mark recognition in the cloud. We provide a series of SDKs. Along with that, you can get binaries to start working immediately and recognize various OMR forms.
Developers can embed optical recognition in any type of application to extract data from images of tests, exams, questionnaires, surveys, etc. In the repository you can find examples on how to start using Aspose.OMR API in your project.
"""
)