-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (29 loc) · 1.29 KB
/
setup.py
File metadata and controls
37 lines (29 loc) · 1.29 KB
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
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name="pycaleva",
version="0.8.0",
author="Martin Weigl",
author_email="[email protected]",
description="A framework for calibration evaluation of binary classification models",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MartinWeigl/pycaleva",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords='calibration, classification, model, machine_learning, statistics',
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires = ['numpy>=1.26', 'scipy>=1.13', 'scikit-learn>=1.4', 'matplotlib>=3.8', 'tqdm>=4.66', 'pandas>=2.2', 'statsmodels>=0.14', 'fpdf2>=2.7', 'ipython>=8.24'],
project_urls={
'Source': 'https://github.com/MartinWeigl/pycaleva',
'Documentation': 'https://martinweigl.github.io/pycaleva/',
},
)