-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
76 lines (71 loc) · 3.6 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
73
74
75
76
#!/usr/bin/env python
# Created by "Thieu" at 13:24, 27/02/2022 ----------%
# Email: [email protected] %
# Github: https://github.com/thieu1995 %
# --------------------------------------------------%
from setuptools import setup, find_packages
def readme():
with open('README.md', encoding='utf-8') as f:
README = f.read()
return README
setup(
name="permetrics",
version="2.0.0",
author="Thieu",
author_email="[email protected]",
description="PerMetrics: A Framework of Performance Metrics for Machine Learning Models",
long_description=readme(),
long_description_content_type="text/markdown",
keywords=["regression", "classification", "clustering", "metrics", "performance metrics",
"rmse", "mae", "mape", "nse", "nash-sutcliffe-efficiency", "willmott-index",
"precision", "accuracy", "recall", "f1 score", "pearson correlation coefficient",
"r2", "Kling-Gupta Efficiency", "Gini Coefficient", "Matthews Correlation Coefficient",
"Cohen's Kappa score", "Jaccard score", "ROC-AUC", "mutual information", "rand score",
"Davies Bouldin score", "completeness score", "Silhouette Coefficient score",
"V-measure score", "Folkes Mallows score", "Czekanowski-Dice score", "Huber Gamma score",
"Kulczynski score", "McNemar score", "Phi score", "Rogers-Tanimoto score", "Russel-Rao score",
"Sokal-Sneath score", "confusion matrix", "pearson correlation coefficient (PCC)",
"spearman correlation coefficient (SCC)", "Performance analysis"],
url="https://github.com/thieu1995/permetrics",
project_urls={
'Documentation': 'https://mafese.readthedocs.io/',
'Source Code': 'https://github.com/thieu1995/permetrics',
'Bug Tracker': 'https://github.com/thieu1995/permetrics/issues',
'Change Log': 'https://github.com/thieu1995/permetrics/blob/master/ChangeLog.md',
'Forum': 'https://t.me/+fRVCJGuGJg1mNDg1',
},
packages=find_packages(exclude=['tests*', 'examples*']),
include_package_data=True,
license="GPLv3",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Benchmark",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
install_requires=["numpy>=1.15.1", "scipy>=1.7.1"],
extras_require={
"dev": ["pytest>=7.0", "pytest-cov==4.0.0", "flake8>=4.0.1", "scikit-learn>=1.0.1"],
},
python_requires='>=3.7',
)