summaryrefslogtreecommitdiffstats
path: root/contrib/cp210x-program/setup.py
blob: 4889f355d3b099e1bf3b021e2b27b4c2e7c95501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from distutils.core import setup

setup(
    name="cp210x-program",
    version="0.2",
    description="Provides access to the EEPROM in an Silabs CP210x",
    long_description="""
The goal of this library is to provide access to the EEPROM of an Silabs CP210x
under Linux. 

The CP210x is an USB-to-serial chip used in a lot of USB devices (similar to
FTDIs and PL2303). The CP210x has a EEPROM on the chip which can be programmed
via USB. Silabs provides already a library and gui programm to program this
EEPROM, but only for windows. 

For more information see:
* http://www.silabs.com/tgwWebApp/public/web_content/products/Microcontrollers/Interface/en/interface.htm
* http://www.silabs.com/public/documents/tpub_doc/anote/Microcontrollers/Interface/en/an144.pdf

Requires:
* libusb: http://libusb.sourceforge.net/
* ctypes: http://starship.python.net/crew/theller/ctypes/
""",
    author="Johannes Hölzl",
    author_email="johannes.hoelzl@gmx.de",
    url="http://cp210x-program.sourceforge.net/",
    license="GNU LGPL",
    platforms="POSIX",
    classifiers=[
        "License :: OSI-Approved Open Source :: GNU Library or Lesser General Public License (LGPL)",
        "Intended Audience :: Manufacturing",
        "Development Status :: 4 - Beta",
        "Topic :: System :: Hardware :: Hardware Drivers",
        "Programming Language :: Python",
        "Operating System :: POSIX :: Linux",
        "Operating System :: POSIX :: BSD :: FreeBSD",
        "Operating System :: MacOS :: MacOS X",
    ],
    packages=[
        'cp210x'
    ],
    scripts=[
        'cp210x-program'
    ],
)