forked from boredbird/woe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.24 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
# -*- coding:utf-8 -*-
__author__ = 'boredbird'
from setuptools import setup, find_packages
setup(
name = 'woe',
version = '0.1.4',
description = (
'Tools for WoE Transformation mostly used in ScoreCard Model for credit rating'
),
long_description = open('README.rst').read(),
author = 'boredbird',
author_email = '1002937942@qq.com',
maintainer = 'boredbird',
maintainer_email = '1002937942@qq.com',
license = 'MIT',
packages = ['woe'],
platforms = ["all"],
url = 'https://github.com/boredbird/woe',
classifiers = [
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries'
],
keywords = ["math","finance","scorecard","woe",'iv'],
install_requires = [
'pandas>=0.19.2',
'numpy>=1.11.3',
'scipy>=0.18.1',
'matplotlib>=2.0.0',
]
)