new release

This commit is contained in:
oroulet 2018-01-31 13:01:35 +01:00
parent 51b19de2ec
commit c5dba8594c

View File

@ -1,9 +1,9 @@
from distutils.core import setup
from distutils.command.install_data import install_data
setup (name = "urx",
version = "0.10.0",
setup(
name="urx",
version="0.11.0",
description="Python library to control an UR robot",
author="Olivier Roulet-Dubonnet",
author_email="olivier.roulet@gmail.com",
@ -12,7 +12,6 @@ setup (name = "urx",
provides=["urx"],
install_requires=["math3d"],
license="GNU Lesser General Public License v3",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
@ -21,7 +20,4 @@ setup (name = "urx",
"Operating System :: OS Independent",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)
])