forked from aws/sagemaker-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (33 loc) · 1.38 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
import os
from setuptools import setup, find_packages
from glob import glob
from os.path import basename
from os.path import splitext
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name="sagemaker",
version="1.0.1",
description="Open source library for training and deploying models on Amazon SageMaker.",
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
long_description=read('README.rst'),
author="Amazon Web Services",
url='https://github.com/aws/sagemaker-python-sdk/',
license="Apache License 2.0",
keywords="ML Amazon AWS AI Tensorflow MXNet",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
],
# Declare minimal set for installation
install_requires=['boto3>=1.4.8', 'numpy>=1.9.0', 'protobuf>=3.1'],
extras_require={
'test': ['tox', 'flake8', 'pytest', 'pytest-cov', 'pytest-xdist',
'mock', 'tensorflow>=1.3.0', 'contextlib2']},
)