-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
31 lines (26 loc) · 1.56 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
import setuptools
# with open("README.md", "r" , encoding='utf-8') as fh:
# long_description = fh.read()
long_description = '''Scorecard-Bundle is a **high-level Scorecard modeling API** that is easy-to-use and **Scikit-Learn consistent**. It covers the major steps to train a Scorecard model such as feature discretization with ChiMerge, WOE encoding, feature evaluation with information value and collinearity, Logistic-Regression-based Scorecard model, and model evaluation for binary classification tasks. All the transformer and model classes in Scorecard-Bundle comply with Scikit-Learn‘s fit-transform-predict convention.
See detailed documentation in https://scorecard-bundle.bubu.blue/
See the source codes of this project in https://github.com/Lantianzz/Scorecard-Bundle
'''
setuptools.setup(
name="scorecardbundle",
version="1.2.2",
author="Lantian ZHANG",
author_email="blue.zhanglt@outlook.com",
description="The python scorecard modeling library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Lantianzz/Scorecard-Bundle",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3"],
keywords='Python Scorecard Modeling',
packages=setuptools.find_packages(exclude=['TEMP','examples']),
python_requires='>=3.7',
install_requires=['numpy','scipy','pandas','matplotlib','scikit-learn'],
)