forked from deepchecks/deepchecks
-
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.
added metadata for setup.py (deepchecks#27)
* added metadata * Update setup.py * Update setup.py Co-authored-by: Dan Arlowski <[email protected]> Co-authored-by: Itay Gabbay <[email protected]>
- Loading branch information
1 parent
f862dd6
commit f54a5df
Showing
1 changed file
with
23 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
ver_path = convert_path('mlchecks/version.py') | ||
with open(ver_path) as ver_file: | ||
exec(ver_file.read(), main_ns) | ||
VER = main_ns['__version__'] | ||
|
||
requirementPath = os.path.dirname(os.path.realpath(__file__)) + '/requirements.txt' | ||
install_requires = [] | ||
|
@@ -16,7 +17,27 @@ | |
|
||
setup( | ||
name='mlchecks', | ||
version=main_ns['__version__'], | ||
version=VER, | ||
packages=['mlchecks'], | ||
install_requires=install_requires | ||
install_requires=install_requires, | ||
#license='Propietery', #TODO: what is the license | ||
description = 'Package for validating your machine learning model and data', | ||
author = 'deepchecks', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/deepchecks/MLChecks', | ||
download_url = "https://github.com/deepchecks/MLChecks/releases/download/{0}/mlchecks-{0}.tar.gz".format(VER), | ||
keywords = ['Software Development', 'Machine Learning'], | ||
classifiers = [ | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Software Development', | ||
'Topic :: Scientific/Engineering', | ||
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
], | ||
) |