-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (65 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""Python setup.py for klops package"""
import io
import os
from setuptools import find_packages, setup
def read(*paths, **kwargs):
"""Read the contents of a text file safely.
>>> read("klops", "VERSION")
'0.0.3'
>>> read("README.md")
...
"""
content = ""
with io.open(
os.path.join(os.path.dirname(__file__), *paths),
encoding=kwargs.get("encoding", "utf8"),
) as open_file:
content = open_file.read().strip()
return content
requirements = [
"click",
"dvc",
"google-cloud",
"google-cloud-container",
"google-cloud-storage",
"google-auth",
"hyperopt",
"kubernetes",
"joblib",
"matplotlib",
"mlflow",
"scikit-learn",
"seldon-core",
"pandas",
"numpy",
"tqdm"
]
requirements_test = [
"pytest",
"coverage",
"flake8",
"black",
"isort",
"pytest-cov",
"codecov",
"mypy",
"gitchangelog",
"mkdocs"
]
setup(
name="klops",
version=read("klops", "VERSION"),
description="Klops: Koin Machine Learning Ops",
url="https://gitlab-engineering.koinworks.com/data-team/klops/",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Koinworks Data Team",
packages=find_packages(exclude=["tests", ".github"]),
install_requires=requirements,
entry_points={
"console_scripts": ["klops = klops.__main__:main"]
},
extras_require={"test": requirements_test},
package_data={'': ['klops/*.json']},
include_package_data=True
)