File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 17
17
from distutils .core import setup
18
18
from io import open
19
19
from setuptools import find_packages
20
- import mbed_os_tools
20
+ # import mbed_os_tools
21
21
22
22
DESCRIPTION = "The tools to build, test, and work with Mbed OS"
23
23
OWNER_NAMES = "Jimmy Brisson, Brian Daniels"
@@ -31,15 +31,16 @@ def read(fname):
31
31
32
32
setup (
33
33
name = "mbed-os-tools" ,
34
- version = mbed_os_tools . __version__ ,
34
+ version = '0.0.1' ,
35
35
description = DESCRIPTION ,
36
36
long_description = read ("README.md" ),
37
37
author = OWNER_NAMES ,
38
38
author_email = OWNER_EMAILS ,
39
39
maintainer = OWNER_NAMES ,
40
40
maintainer_email = OWNER_EMAILS ,
41
41
url = "https://github.com/ARMmbed/mbed-os-tools" ,
42
- packages = find_packages (),
42
+ packages = find_packages ("src" ),
43
+ package_dir = {"" : "src" },
43
44
license = "Apache-2.0" ,
44
45
test_suite = "test" ,
45
46
install_requires = [
You can’t perform that action at this time.
0 commit comments