Skip to content

Commit

Permalink
added metadata for setup.py (deepchecks#27)
Browse files Browse the repository at this point in the history
* 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
3 people authored Oct 20, 2021
1 parent f862dd6 commit f54a5df
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand All @@ -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',
],
)

0 comments on commit f54a5df

Please sign in to comment.