forked from aws/sagemaker-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (40 loc) · 1.6 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
from glob import glob
import os
from setuptools import find_packages, setup
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
packages = find_packages(where='src', exclude=('test',))
packages.append('sagemaker_containers.etc')
setup(
name='sagemaker_containers',
version='2.2.6',
description='Open source library for creating containers to run on Amazon SageMaker.',
packages=packages,
package_dir={
'sagemaker_containers': 'src/sagemaker_containers',
'sagemaker_containers.etc': 'etc'
},
package_data={'sagemaker_containers.etc': ['*']},
py_modules=[os.path.splitext(os.path.basename(path))[0] for path in glob('src/*.py')],
long_description=read('README.md'),
author='Amazon Web Services',
url='https://github.com/aws/sagemaker-containers/',
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=['boto3', 'six', 'pip', 'flask', 'gunicorn', 'gevent', 'werkzeug'],
extras_require={
'test': ['tox', 'flake8', 'pytest', 'pytest-cov', 'mock', 'sagemaker', 'numpy']
},
entry_points={
'console_scripts': ['serve=sagemaker_containers.cli.serve:main',
'train=sagemaker_containers.cli.train:main'],
}
)