cliechti | 8864126 | 2002-07-29 02:09:04 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | from distutils.core import setup, Extension |
| 3 | |
| 4 | setup (name = "pyparallel", |
| 5 | description="Python Parallel Port Extension", |
| 6 | version="0.1", |
| 7 | author="Chris Liechti", |
| 8 | author_email="cliechti@gmx.net", |
| 9 | url="http://pyserial.sourceforge.net/", |
| 10 | packages=['parallel'], |
| 11 | license="Python", |
| 12 | long_description="Python Parallel Port Extension for Win32, Linux, BSD", |
| 13 | |
| 14 | ext_modules = [ |
| 15 | Extension('_pyparallel', |
| 16 | sources=['src/win32/_pyparallel.c', 'src/win32/loaddrv.c'], |
| 17 | ) |
| 18 | ] |
| 19 | ) |