forked from bsc-scanflow/scanflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (29 loc) · 912 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
import io
import os
with open("requirements.txt") as f:
requirements = f.read().splitlines()
extras = {}
with open("requirements-dev.txt") as f:
extras["dev"] = f.read().splitlines()
version = {} # type: dict
with io.open(os.path.join("scanflow", "_version.py")) as fp:
exec(fp.read(), version)
setup(
name = "scanflow",
description="An MLOps Platform",
keywords='scanflow, kubernetes, mlflow, argo, seldon',
author="BSC Scanflow Team",
author_email='[email protected]',
license="MIT license",
version=version["__version__"],
include_package_data=True,
install_requires=requirements,
extras_require=extras,
python_requires=">=3.6",
packages=find_packages(exclude=["*test*"]),
package_data={"": ["requirements.txt"]},
)