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

setup(
    name="pyserial",
    description="Python Serial Port Extension",
    version="1.0",
    author="Chris Liechti",
    author_email="cliechti@gmx.net",
    url="http://pyserial.sourceforge.net/",
    packages=['serial'],
)