From 0bdcf90fc36479543146910e3551f4b8972f6331 Mon Sep 17 00:00:00 2001 From: John Hawkins Date: Sun, 11 Apr 2021 21:58:24 +1000 Subject: [PATCH] Changing install and documentation --- README.md | 2 ++ minvime/__init__.py | 5 ++++- setup.py | 8 ++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2660eb6..e9b29c3 100755 --- a/README.md +++ b/README.md @@ -92,6 +92,8 @@ Or simply install the package and use the command line application directly Installation from the source tree: ``` +git clone https://github.com/john-hawkins/minvime +cd minvime python setup.py install ``` diff --git a/minvime/__init__.py b/minvime/__init__.py index 5becc17..a18e577 100644 --- a/minvime/__init__.py +++ b/minvime/__init__.py @@ -1 +1,4 @@ -__version__ = "1.0.0" +__version__ = "1.0.1" + +from .estimator_classification import estimate_binary_model_requirements + diff --git a/setup.py b/setup.py index a424477..673b49f 100644 --- a/setup.py +++ b/setup.py @@ -24,14 +24,14 @@ }, include_package_data=True, version = version, - description = "Python Flask Application for Estimating Minimum Viable Model Performance.", + description = "Python Application for Estimating Minimum Viable Model Performance.", long_description = long_descr, long_description_content_type='text/markdown', author = "John Hawkins", - author_email = "hawkins.john.c@gmail.com", - url = "http://john-hawkins.github.io", + author_email = "john@getting-data-science-done.com", + url = "http://getting-data-science-done.com", project_urls = { - 'Documentation': "http://john-hawkins.github.io", + 'Documentation': "https://minvime.readthedocs.io", 'Source': "https://github.com/john-hawkins/minvime", 'Tracker': "https://github.com/john-hawkins/minvime/issues" }