Skip to content

Commit

Permalink
Updated pypi installation in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-leicht committed Sep 18, 2019
1 parent eb5b9e8 commit 2d21ffc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pylogix/__init__.py
Original file line number Diff line number Diff line change
@@ -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__)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

setuptools.setup(
name="pylogix",
version="0.5.0",
version="0.5.1",
author="Dustin Roeder",
author_email="[email protected]",
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",
Expand Down

0 comments on commit 2d21ffc

Please sign in to comment.