diff --git a/README.md b/README.md index 9c6f964..d3aec4c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,9 @@ This package has been tested with Python 3.5+, but should work with all versions ### Installation -Clone the repo and run `python setup.py install` within the top-level folder to install mlcrate. +`pip install mlcrate` + +Alternatively, lone the repo and run `python setup.py install` within the top-level folder to install the bleeding-edge version. ### Dependencies diff --git a/mlcrate/__init__.py b/mlcrate/__init__.py index c520bde..aee72e1 100644 --- a/mlcrate/__init__.py +++ b/mlcrate/__init__.py @@ -4,7 +4,7 @@ from . import time, kaggle, xgb#, sklearn -__version__ = '0.0.1' +__version__ = '0.1.0' def save(data, filename): """Pickles the passed data (with the highest available protocol) to disk using the passed filename. diff --git a/setup.py b/setup.py index eb91d22..a6f63b8 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,18 @@ setup( name='mlcrate', - version='0.0.0a1', + version='0.1.0', description='A collection of handy python tools and functions, mainly for ML and Kaggle.', + long_description="For more info, see https://github.com/mxbi/mlcrate", packages=['mlcrate'], author='Mikel Bober-Irizar', author_email='mikel@mxbi.net', - url='https://github.com/mxbi/mlcrate' + url='https://github.com/mxbi/mlcrate', + license='MIT', + install_requires=['numpy', 'pandas', 'pathos'], + classifiers=['License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3 :: Only', + 'Topic :: Scientific/Engineering', + 'Development Status :: 4 - Beta', + ] )