Blame view

RIOT/dist/tools/pyterm/setup.py 403 Bytes
fb11e647   vrobic   reseau statique a...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  #!/usr/bin/env python
  
  try:
      from setuptools import setup
  except ImportError:
      from distutils.core import setup
  
  setup(name="pyterm",
        version="1.0",
        description="Python-based terminal emulator for serial communication",
        author="Oliver Hahm",
        author_email="ohahm@fu-berlin.de",
        url="http://riot-os.org/",
        install_requires=["pyserial"],
        scripts=["pyterm"])