diff --git a/README.md b/README.md index 49eb7e7e..65b0030a 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,10 @@ Instauto is a Python package for automating various parts of Instagram, making use of the private Instagram API. -Instauto is currently fairly limited, because it is under development. Progress can be tracked [here](https://github.com/stanvanrooy/instauto/projects/2). -Instauto in it's current state, should not be used for production systems. - For feature requests, ideas, comments, etc., please open an issue. ## Installation -The package is still under development, but an alpha version has been published to PyPi. The package can be installed with the following pip command: +The package can be installed with the following pip command: ```pip install instauto2``` **Note:** due to a lost password, I temporarily lost access to my own PyPi account. Until that is resolved (see [pypi-support](https://github.com/pypa/pypi-support/issues/744)), `instauto` will be published to `instauto2` :). diff --git a/setup.py b/setup.py index eb360b05..a711115e 100644 --- a/setup.py +++ b/setup.py @@ -4,13 +4,13 @@ setup( name='instauto2', packages=setuptools.find_packages(), - version='0.0.18', + version='1.0.0', license='MIT', description='Python wrapper for the private Instagram API', author='Stan van Rooy', author_email='stan@rooy.dev', url='https://github.com/stanvanrooy/instauto', - download_url='https://github.com/stanvanrooy/instauto/archive/0.0.18.tar.gz', + download_url='https://github.com/stanvanrooy/instauto/archive/1.0.0.tar.gz', keywords=['instagram api', 'private instagram api'], install_requires=[ 'requests',