inital cleanup for publishing

This commit is contained in:
Olivier R-D
2013-01-08 11:26:54 +01:00
commit 7bbc069f8c
10 changed files with 924 additions and 0 deletions

19
setup.py Normal file
View File

@@ -0,0 +1,19 @@
from distutils.core import setup
from distutils.command.install_data import install_data
import glob
import os
import make_deb
setup (name = "python-ur",
version = make_deb.bzrstring,
description = "Python library to control an UR robot",
author = "Olivier Roulet-Dubonnet",
url = 'http://launchpad.net/XXX',
py_modules=["urparser", "urx"],
license = "GNU General Public License",
)