summaryrefslogtreecommitdiff
path: root/pyserial/setup.py
blob: 6858ba320e6a3a60f25174a65df35c10d332bd63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# setup.py
from distutils.core import setup

#windows installer:
# python setup.py bdist_wininst

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