from distutils.core import setup
from distutils.command.install_data import install_data


setup (name = "urx", 
        version = "0.8.1",
        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",
        ]
        )