-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
56 lines (52 loc) · 1.67 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
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", encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
MAINTAINER = "Stroganov Kirill"
MAINTAINER_EMAIL = "kiraplenkin@gmail.com"
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=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
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=LICENSE,
packages=find_packages(),
include_package_data=True,
keywords=[
"WOE",
"Weight Of Evidence",
"Monotone Weight Of Evidence Transformation",
"Scorecard",
"LogisticRegression"
],
install_requires=[
"numpy>=1.17.0",
"pandas>=1.0.0",
"scikit-learn>=0.23.0",
"statsmodels>=0.11.0",
"scipy>=1.4.0",
"lxml>=4.5.0"
],
python_requires='>=3.7',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering'
]
)