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
51
52
53
|
- import os
- import setuptools
- about = {}
- here = os.path.abspath(os.path.dirname(__file__))
- with open(os.path.join(here, "pipelines", "__version__.py")) as f:
- exec(f.read(), about)
- required_packages = ["sagemaker","mlflow","scikit-image","awscli"]
- extras = {
- "test": [
- "black",
- "coverage",
- "flake8",
- "mock",
- "pydocstyle",
- "pytest",
- "pytest-cov",
- "sagemaker",
- "tox",
- ]
- }
- setuptools.setup(
- name=about["__title__"],
- description=about["__description__"],
- version=about["__version__"],
- author=about["__author__"],
- author_email=["__author_email__"],
- long_description_content_type="text/markdown",
- url=about["__url__"],
- license=about["__license__"],
- packages=setuptools.find_packages(),
- include_package_data=True,
- python_requires=">=3.6",
- install_requires=required_packages,
- extras_require=extras,
- entry_points={
- "console_scripts": [
- "get-pipeline-definition=pipelines.get_pipeline_definition:main",
- "run-pipeline=pipelines.run_pipeline:main",
- ]
- },
- classifiers=[
- "Development Status :: 3 - Alpha",
- "Intended Audience :: Developers",
- "Natural Language :: English",
- "Programming Language :: Python",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- ],
- )
|