forked from reiinakano/scikit-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
expose strategy param for calibration curve reiinakano#118
- Loading branch information
1 parent
ccb9969
commit 9111ce5
Showing
3 changed files
with
70 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,30 +54,43 @@ def get_version(rel_path): | |
long_description=README, | ||
version=VERSION, | ||
url='https://github.com/reiinakano/scikit-plot', | ||
download_url='https://github.com/reiinakano/scikit-plot?tab=readme-ov-file#installation', | ||
project_urls={ | ||
'Documentation': 'https://github.com/reiinakano/scikit-plot', | ||
'Source Code': 'https://github.com/reiinakano/scikit-plot', | ||
'Bug Tracker': 'https://github.com/reiinakano/scikit-plot/issues', | ||
'Forum': '', | ||
'Donate': '', | ||
}, | ||
author='Reiichiro Nakano', | ||
author_email='[email protected]', | ||
license='MIT License', | ||
install_requires=[ | ||
'matplotlib>=1.4.0', | ||
'scikit-learn>=0.18', | ||
'scikit-learn>=0.21', | ||
'scipy>=0.9', | ||
'joblib>=0.10' | ||
], | ||
# Supported Python versions | ||
# python_requires=">=2.7", | ||
classifiers = [ | ||
'Development Status :: 1 - Planning', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 2.5', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Operating System :: OS Independent', | ||
'Intended Audience :: Science/Research', | ||
'Intended Audience :: Developers', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.14', | ||
'Topic :: Communications :: Email', | ||
'Topic :: Documentation :: Sphinx', | ||
'Topic :: Scientific/Engineering :: Visualization', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Topic :: Utilities', | ||
], | ||
packages=['scikitplot'], | ||
include_package_data=True, | ||
|