Skip to content

Commit

Permalink
0.1.0 PyPi release
Browse files Browse the repository at this point in the history
  • Loading branch information
mxbi committed Jan 30, 2018
1 parent 6edc946 commit 6a18c8d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion mlcrate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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',
]
)

0 comments on commit 6a18c8d

Please sign in to comment.