This repository has been archived by the owner on Aug 3, 2023. It is now read-only.
forked from aws-samples/amazon-textract-transformer-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (43 loc) · 1.53 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
50
51
52
53
54
55
56
57
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0
import setuptools
with open("README.md") as fp:
long_description = fp.read()
setuptools.setup(
name="amazon-textract-transformer-pipeline",
version="0.2.1",
description="Post-processing Amazon Textract with Transformer-Based Models on Amazon SageMaker",
long_description=long_description,
long_description_content_type="text/markdown",
author="Amazon Web Services",
packages=["annotation", "pipeline"],
install_requires=[
"aws-cdk-lib==^2.46.0",
"aws-cdk.aws-lambda-python-alpha==^2.46.0-alpha.0",
"boto3==^1.24.0",
"cdk-ecr-deployment==^2.5.6",
"constructs==^10.0.101",
"sagemaker>=2.87,<3",
],
extras_require={
"dev": [
"black==^22.3.0",
"black-nb==^0.7.0",
]
},
python_requires=">=3.8.0",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Typing :: Typed",
],
)