forked from ing-bank/probatus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1003 Bytes
/
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
import setuptools
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="probatus",
version="1.5.0",
description="Tools for machine learning model validation",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="ING Bank N.V.",
author_email="[email protected]",
license="MIT License",
packages=setuptools.find_packages(exclude=['tests']),
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"scikit-learn>=0.22.2",
"pandas>=1.0.0",
"matplotlib>=3.1.1",
"scipy>=1.4.0",
"joblib>=0.13.2",
"tqdm>=4.41.0",
"shap>=0.36.0",
"numpy>=1.19.0"
],
url="https://github.com/ing-bank/probatus",
zip_safe=False,
)