forked from loglabs/mltrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.11 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
from setuptools import setup, find_packages
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="mltrace",
version="0.14",
description="Lineage and tracing for ML pipelines",
long_description=README,
long_description_content_type="text/markdown",
author="shreyashankar",
author_email="[email protected]",
license="Apache License 2.0",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Bug Tracking",
],
packages=find_packages(exclude=["tests"]),
install_requires=[
"click",
"docker",
"flask",
"furo",
"gitpython",
"psycopg2-binary",
"pytest",
"python-dotenv",
"sqlalchemy",
],
entry_points="""
[console_scripts]
mltrace=mltrace.cli.cli:mltrace
""",
include_package_data=True,
project_urls={
"Bug Tracker": "https://github.com/loglabs/mltrace/issues",
"Source Code": "https://github.com/loglabs/mltrace",
},
)