-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (33 loc) · 1.06 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
from setuptools import setup, find_packages
from woe_scoring import __version__
DISTNAME = "woe_scoring"
DESCRIPTION = "Weight Of Evidence Transformer and LogisticRegression model with scikit-learn API"
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
MAINTAINER = "Stroganov Kirill"
MAINTAINER_EMAIL = "[email protected]"
URL = "https://github.com/kiraplenkin"
DOWNLOAD_URL = "https://pypi.org/project/woe-scoring/#files"
LICENSE = "MIT"
setup(
name=DISTNAME,
version=__version__,
description=DESCRIPTION,
long_description='',
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
url=URL,
download_url="https://github.com/kiraplenkin/woe_scoring/archive/refs/tags/v0.4.0.tar.gz",
license='',
packages=find_packages(),
include_package_data=True,
keywords=[
"WOE",
"Weight Of Evidence",
"Monotone Weight Of Evidence Transformation",
"Scorecard",
"LogisticRegression"
],
install_requires=["numpy", "pandas", "scikit-learn", "statsmodels", "scipy", "lxml"],
zip_safe=False
)