summaryrefslogtreecommitdiff
path: root/pyparallel/setup.py
diff options
context:
space:
mode:
author(no author) <(no author)@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2005-08-12 21:04:45 +0000
committer(no author) <(no author)@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2005-08-12 21:04:45 +0000
commitdc8f9beabbe0e74cbe668cbc23dace74e0a04d14 (patch)
tree09e4e63b0c287c61ed20e82169125e2829166ed9 /pyparallel/setup.py
parent22a50cbc141ffa56829b7b4faedd17b7dfa6bb02 (diff)
downloadpyserial-release2_2.tar.gz
This commit was manufactured by cvs2svn to create tag 'release2_2'.release2_2
git-svn-id: http://svn.code.sf.net/p/pyserial/code/tags/release2_2@141 f19166aa-fa4f-0410-85c2-fa1106f25c8a
Diffstat (limited to 'pyparallel/setup.py')
-rw-r--r--pyparallel/setup.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/pyparallel/setup.py b/pyparallel/setup.py
deleted file mode 100644
index 749470c..0000000
--- a/pyparallel/setup.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/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",
- package_data = data_files
-)