From b4d25003bc38a6cb8987b9b24c1ddfca1c163c12 Mon Sep 17 00:00:00 2001 From: Marcio Dos Santos Date: Thu, 5 Apr 2018 07:09:33 -0700 Subject: [PATCH] Add setup.py --- setup.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2dad49c --- /dev/null +++ b/setup.py @@ -0,0 +1,35 @@ +import os +from glob import glob +from os.path import basename +from os.path import splitext + +from setuptools import setup, find_packages + + +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + + +setup( + name='sagemaker-containers', + version='1.0', + description='Open source library for creating containers to run on Amazon SageMaker.', + + packages=find_packages(where='src', exclude=('test',)), + package_dir={'': 'src'}, + py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')], + long_description=read('README.md'), + author='Amazon Web Services', + url='https://github.com/aws/sagemaker-container-support/', + license='Apache License 2.0', + + 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', + ] +)