-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
50 lines (44 loc) · 1.4 KB
/
setup.py
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
49
50
# Copyright 2015 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Pip config for some tools that are probably not used any longer."""
from setuptools import setup
setup(
name="powerlog",
version="1.0",
author="Nick Sanders",
author_email="nsanders@chromium.org",
url="https://www.chromium.org/chromium-os/ec-development",
package_dir={"": "extra/usb_power"},
py_modules=["powerlog", "stats_manager"],
entry_points={
"console_scripts": ["powerlog=powerlog:main"],
},
description="Sweetberry power logger.",
)
setup(
name="console",
version="1.0",
author="Nick Sanders",
author_email="nsanders@chromium.org",
url="https://www.chromium.org/chromium-os/ec-development",
package_dir={"": "extra/usb_serial"},
py_modules=["console"],
entry_points={
"console_scripts": ["usb_console=console:main"],
},
description="Tool to open the usb console on servo, cr50.",
)
setup(
name="unpack_ftb",
version="1.0",
author="Wei-Han Chen",
author_email="stimim@chromium.org",
url="https://www.chromium.org/chromium-os/ec-development",
package_dir={"": "util"},
py_modules=["unpack_ftb"],
entry_points={
"console_scripts": ["unpack_ftb=unpack_ftb:main"],
},
description="Tool to convert ST touchpad .ftb file to .bin",
)