-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 1009 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (24 loc) · 1009 Bytes
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
from os import path
from io import open
from setuptools import setup
from model_lambda import __name__, __version__, __doc__
# Get the long description from the README file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=__name__,
version=__version__,
description=__doc__,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/schmidtbri/lambda-ml-model-deployment",
author="Brian Schmidt",
author_email="6666331+schmidtbri@users.noreply.github.com",
packages=["model_lambda"],
python_requires=">=3.5",
install_requires=["marshmallow>3",
"apispec[yaml]>3",
"iris-model@git+https://github.com/schmidtbri/ml-model-abc-improvements#egg=iris_model@master"],
tests_require=['pytest', 'pytest-html', 'pylama', 'coverage', 'coverage-badge', 'bandit', 'safety']
)