blob: 652d2b98ba331b1ad20b8bfb51001c72f1dae958 (
plain)
1
2
3
4
5
6
7
8
9
|
from setuptools import setup
setup(
name = "cnccontrol-driver",
description = "CNC-Control device driver",
author = "Michael Büsch",
author_email = "m@bues.ch",
py_modules = [ "cnccontrol_driver", ],
)
|