-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.75 KB
/
setup.py
File metadata and controls
47 lines (46 loc) · 1.75 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
39
40
41
42
43
44
45
46
47
import os
import site
import json
from setuptools import setup, find_packages
setup(
name="easy_sm",
description="Easy SageMaker Ops",
long_description="""This package makes it easier to work with SageMaker by enabling rapid prototyping with local training, processing, and deployment.
Provides seamless integration between local Docker-based development and AWS SageMaker cloud operations.
Features include: local training/processing/deployment, cloud job management, endpoint management, and job monitoring.
This is an experimental package and API is likely to evolve and may break.
Recommended to validate before updating.
""",
author="Prateek",
author_email="prteek@icloud.com",
version="1.0.2",
python_requires=">=3.13",
packages=find_packages(where="."),
package_data={
"easy_sm": [
"template/easy_sm_base/*.sh",
"template/easy_sm_base/Dockerfile",
"template/easy_sm_base/__init__.py",
"template/easy_sm_base/training/train",
"template/easy_sm_base/training/*.py",
"template/easy_sm_base/processing/*.py",
"template/easy_sm_base/prediction/*.py",
"template/easy_sm_base/prediction/serve",
"template/easy_sm_base/local_test/*.sh",
"template/easy_sm_base/local_test/test_dir/output/.gitkeep",
"template/easy_sm_base/local_test/test_dir/model/.gitkeep",
"template/easy_sm_base/local_test/test_dir/input/data/training/.gitkeep",
]
},
install_requires=[
"typer>=0.9.0",
"docker>=7.1.0",
"sagemaker>=2.243.0",
"boto3>=1.26.0",
],
entry_points={
"console_scripts": [
"easy_sm=easy_sm.__main__:cli",
],
},
)