config: Make fake config access consistent
For portage (setup.py), this will install the fake config data
consistently available under the package install.
For local dev, this will use the symlinks to the fake config.
Across the board, this will make setup consistent across portage, chroot
dev env, and config stand alone dev environment.
BUG=None
TEST=None
Change-Id: I22dd9d17f5a7037fba6e200bd427dad9454bf6db
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/config/+/2103705
Reviewed-by: Andrew Lamb <andrewlamb@chromium.org>
Tested-by: C Shapiro <shapiroc@chromium.org>
Auto-Submit: C Shapiro <shapiroc@chromium.org>
diff --git a/python/setup.py b/python/setup.py
index 8150800..2166e66 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -4,7 +4,6 @@
from distutils.core import setup
-
setup(name='config',
version='1.0',
description='Module to access Config API python proto bindings',
@@ -13,4 +12,7 @@
'api/*.py',
'api/software/*.py',
'api/software/**/*.py',
+ 'test/*.py',
+ 'test/fake_program/*',
+ 'test/fake_project/*',
]},)