-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (44 loc) · 1.37 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
import os
import io
from setuptools import setup
def read(path, encoding="utf-8"):
path = os.path.join(os.path.dirname(__file__), path)
with io.open(path, encoding=encoding) as fp:
return fp.read()
NAME = "ml_tracking_ops"
AUTHOR = "Senad Kurtiši"
VERSION = "0.0.1"
LICENCE = "MIT"
PACKAGES = ["ml_tracking_ops", 'ml_tracking_ops.experiment', 'ml_tracking_ops.ml_tracking_ops']
DESCRIPTION = 'ML-Ops-Tracking: An ML Ops library which enables tracking and visualizing machine learning experiments '
LONG_DESCRIPTION = read("README.md")
LONG_DESCRIPTION_CONTENT_TYPE = "text/markdown"
ENTRY_POINTS = {
"console_scripts": ['ml-tracking-ops = ml_tracking_ops.main:main']
}
INSTALL_REQUIREMENTS = [
"flask>=1.1.2",
"numpy>=1.21.2",
"watchdog>=2.1.6"
]
setup(
name=NAME,
author=AUTHOR,
licence=LICENCE,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
packages=PACKAGES,
entry_points=ENTRY_POINTS,
include_package_data=True,
zip_safe=False,
install_requires=INSTALL_REQUIREMENTS,
classifiers= [
"Development Status :: 3 - Alpha",
"Environment :: Console"
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Science/Research",
"Natural Language :: English",
],
)