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

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