diff --git a/README.md b/README.md index e38d562..c40783d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ python setup.py install --user Or you can install with pip: ``` -pip install git+https://github.com/dmroeder/pylogix +pip install pylogix ``` ### Verifying Installation diff --git a/pylogix/__init__.py b/pylogix/__init__.py index fd5e7f4..df46f5b 100644 --- a/pylogix/__init__.py +++ b/pylogix/__init__.py @@ -1,4 +1,4 @@ from .lgxDevice import LGXDevice from .eip import PLC -__version_info__ = (0, 5, 0) +__version_info__ = (0, 5, 1) __version__ = '.'.join(str(x) for x in __version_info__) diff --git a/setup.py b/setup.py index afdb857..7395386 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,14 @@ setuptools.setup( name="pylogix", - version="0.5.0", + version="0.5.1", author="Dustin Roeder", author_email="dmroeder@gmail.com", description="Read/Write Rockwell Automation Logix based PLC's", long_description=long_description, long_description_content_type="text/markdown", license="Apache License 2.0", - url="https://github.com/dmroeder/pylogix", + url="https://github.com/daniel-leicht/pylogix", packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 2.7",