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

#windows installer:
# python setup.py bdist_wininst

setup(
    name="pyserial",
    description="Python Serial Port Extension",
    version="1.15",
    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"
)