From a3169b595ce0fbc0e9609ea7d488fd5a380b966c Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Tue, 26 Jan 2021 01:25:29 -0600 Subject: [PATCH] Made sure setup.py puts config.yml in the correct location --- MANIFEST.in | 1 + setup.py | 2 +- tibi_hardlinks/config.yml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in create mode 120000 tibi_hardlinks/config.yml diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..cb2524f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include config.yml.sample diff --git a/setup.py b/setup.py index 174d307..72c0d05 100644 --- a/setup.py +++ b/setup.py @@ -11,5 +11,5 @@ setup( author="Raphael Roberts", author_email="raphael.roberts48@gmail.com", packages=find_packages(), - data_files=[("", ["config.yml.sample"])], + package_data={"tibi_hardlinks": ["config.yml"]}, ) diff --git a/tibi_hardlinks/config.yml b/tibi_hardlinks/config.yml new file mode 120000 index 0000000..b8f7029 --- /dev/null +++ b/tibi_hardlinks/config.yml @@ -0,0 +1 @@ +../config.yml.sample \ No newline at end of file