From 4306fe36839167571550f81089bcad62f36d7483 Mon Sep 17 00:00:00 2001 From: Jonas I Liechti Date: Thu, 11 Oct 2018 15:11:20 +0200 Subject: [PATCH] shipping config file along --- gbparse/run.py | 9 --------- setup.py | 5 +++-- 2 files changed, 3 insertions(+), 11 deletions(-) delete mode 100644 gbparse/run.py diff --git a/gbparse/run.py b/gbparse/run.py deleted file mode 100644 index 3c3ae1f..0000000 --- a/gbparse/run.py +++ /dev/null @@ -1,9 +0,0 @@ -fname = '../ESBL_genbank_example.txt' -with open(fname, 'r') as fobj: - genome = {} - i = 10 - lines = [] - while i: - i -= 1 - print i - lines.append(fobj.readline()) diff --git a/setup.py b/setup.py index 4153d65..c1313b6 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,7 @@ packages=find_packages(), install_requires=['configparser', 'requests'], data_files=[ - ('config', ['gbparse/config.cfg']), - ] + ('gbparse', ['gbparse/config.cfg']), + ], + include_package_data=True, )