do not keep ref of inverse matrix for calibration, small packaging changes for pipy

This commit is contained in:
Olivier R-D
2014-01-16 14:56:36 +01:00
parent 7ec4165fc2
commit 08baca5a0f
3 changed files with 16 additions and 9 deletions

View File

@@ -2,16 +2,25 @@ from distutils.core import setup
from distutils.command.install_data import install_data
import make_deb
setup (name = "python-urx",
version = make_deb.vcsstring,
setup (name = "urx",
version = ".8.0",
description = "Python library to control an UR robot",
author = "Olivier Roulet-Dubonnet",
author_email = "olivier.roulet@gmail.com",
url = 'https://github.com/oroulet/python-urx',
packages = ["urx"],
provides = ["urx"],
license = "GNU General Public License v3",
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)