Fixes
- Fix version mismatch in __init__.py - Add numpy as a required install in setup.py since it is used directly in the library - Make the pip install command more noticeable
This commit is contained in:
parent
d99e3219ce
commit
fa466b3cc9
@ -11,7 +11,10 @@ urx was primarily developed by [Olivier Roulet-Dubonnet](https://github.com/orou
|
|||||||
|
|
||||||
# Install
|
# Install
|
||||||
|
|
||||||
The easiest is probably to use pip: pip install urx
|
The easiest is probably to use pip:
|
||||||
|
```
|
||||||
|
pip install urx
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
# Example use:
|
# Example use:
|
||||||
|
2
setup.py
2
setup.py
@ -9,7 +9,7 @@ setup(
|
|||||||
url='https://github.com/oroulet/python-urx',
|
url='https://github.com/oroulet/python-urx',
|
||||||
packages=["urx"],
|
packages=["urx"],
|
||||||
provides=["urx"],
|
provides=["urx"],
|
||||||
install_requires=["math3d"],
|
install_requires=["numpy", "math3d"],
|
||||||
license="GNU Lesser General Public License v3",
|
license="GNU Lesser General Public License v3",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
|
@ -3,7 +3,7 @@ Python library to control an UR robot through its TCP/IP interface
|
|||||||
"""
|
"""
|
||||||
from urx.urrobot import RobotException, URRobot # noqa
|
from urx.urrobot import RobotException, URRobot # noqa
|
||||||
|
|
||||||
__version__ = "0.9.0"
|
__version__ = "0.11.0"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from urx.robot import Robot
|
from urx.robot import Robot
|
||||||
|
Loading…
x
Reference in New Issue
Block a user