8000 Make it an installable python package · ARMmbed/mbed-tools-lib@19b4b49 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jul 27, 2020. It is now read-only.

Commit 19b4b49

Browse files
committed
Make it an installable python package
1 parent fc49690 commit 19b4b49

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

mbed_tools_lib/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from setuptools import setup, find_packages
2+
3+
4+
setup(
5+
name="mbed-tools-lib",
6+
version="0.1",
7+
packages=find_packages(),
8+
)

0 commit comments

Comments
 (0)
0