File: setup.py

package info (click to toggle)
pyparallel 0.2-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 180 kB
  • ctags: 206
  • sloc: ansic: 458; python: 85; cpp: 67; makefile: 61
file content (19 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from distutils.core import setup

import os
if os.name == 'nt':
    data_files = {'parallel': ['simpleio.dll']}
else:
    data_files = None

setup (name = "pyparallel",
    description="Python Parallel Port Extension",
    version="0.2",
    author="Chris Liechti",
    author_email="cliechti@gmx.net",
    url="http://pyserial.sourceforge.net/",
    packages=['parallel'],
    license="Python",
    long_description="Python Parallel Port Extension for Win32, Linux, BSD"
)