-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
51 lines (47 loc) · 1.4 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
# -*- coding: utf-8 -*-
# file: setup.py
# time: 2022/2/4
# author: yangheng <[email protected]>
# github: https://github.com/yangheng95
# Copyright (C) 2021. All Rights Reserved.
from setuptools import setup, find_packages
from metric_visualizer import __name__, __version__
from pathlib import Path
cwd = Path(__file__).parent
long_description = (cwd / "README.md").read_text(encoding="utf8")
setup(
name=__name__,
version=__version__,
description="This is a tool for automated experimental metrics statistics and visualization",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yangheng95/metric_visualizer",
# Author details
author="yang, Heng",
author_email="[email protected]",
python_requires=">=3.6",
packages=find_packages(),
include_package_data=True,
exclude_package_date={"": [".gitignore"]},
# Choose your license
license="MIT",
install_requires=[
"matplotlib>=3.6.3",
"tikzplotlib",
"findfile",
"scipy",
"tabulate",
"natsort",
"numpy",
"update_checker",
"click",
"pandas",
"openpyxl",
"xlsxwriter",
"scikit-learn",
],
entry_points="""
[console_scripts]
mvis=metric_visualizer.cli_command:instant_visualize
""",
)