Jonathan Herbert fa466b3cc9 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
2018-08-10 10:42:43 +02:00

23 lines
778 B
Python

from setuptools import setup
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",
url='https://github.com/oroulet/python-urx',
packages=["urx"],
provides=["urx"],
install_requires=["numpy", "math3d"],
license="GNU Lesser 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",
])