forked from aws/sagemaker-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (36 loc) · 1.42 KB
/
setup.py
File metadata and controls
46 lines (36 loc) · 1.42 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
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()
PKG_NAME = 'container_support'
setup(
name='sagemaker_container_support',
version='1.0.3',
description='Open source library for creating containers to run on Amazon SageMaker.',
packages=[PKG_NAME],
package_dir={PKG_NAME: 'src/container_support'},
package_data={PKG_NAME: ['etc/*']},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
scripts=['bin/entry.py'],
long_description=read('README.rst'),
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',
],
install_requires=['Flask >=0.12.2, <1', 'boto3 >=1.6.18, <2', 'six >=1.11.0, <2',
'gunicorn >=19.7.1, <20', 'gevent >=1.2.2, <2'],
extras_require={
'test': ['tox', 'flake8', 'pytest', 'pytest-cov', 'pytest-xdist', 'mock']
},
)