From 6ede294e9dcadd62af9e5bf51a4cf30a3ccc0aab Mon Sep 17 00:00:00 2001 From: Hiroshi Miura Date: Sun, 29 Sep 2019 08:51:13 +0900 Subject: [PATCH] Setup.py: add package_data Signed-off-by: Hiroshi Miura --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index d5f03e6..c1562fe 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,7 @@ setup(name='aqtinstall', author='Hioshi Miura', author_email='miurahr@linux.com', packages=["aqt"], + package_data={'aqt': ['*.yml']}, install_requires=['requests', 'six', 'py7zr'], extras_require={'dev': ['pytest', 'pytest-pep8', 'pytest-cov', 'flake8']}, scripts=["bin/aqt"],