From ded8557c517423a7b797e573954c36a675f7bc62 Mon Sep 17 00:00:00 2001 From: Adam Wenocur Date: Tue, 12 Aug 2014 17:10:36 -0400 Subject: [PATCH] refactored fetchVcf module --- setup.py | 2 +- test/fetchVCF.py | 2 +- varify_client/{_fetchVCF.py => fetchVCF.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename varify_client/{_fetchVCF.py => fetchVCF.py} (100%) diff --git a/setup.py b/setup.py index 6a8ff8a..d087051 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ description="an HTTP client and supporting utilities for the Varify API", download_url='https://github.com/awenocur/varify_client.git', entry_points={ - "console_scripts": ['fetchVCF = varify_client._fetchVCF:runCommandLine'] + "console_scripts": ['fetchVCF = varify_client.fetchVCF:runCommandLine'] }, url='https://github.com/awenocur/varify_client', install_requires=["PyVCF"] diff --git a/test/fetchVCF.py b/test/fetchVCF.py index 609ac51..0172829 100644 --- a/test/fetchVCF.py +++ b/test/fetchVCF.py @@ -1,7 +1,7 @@ from os.path import dirname, join from unittest import TestCase from hashlib import md5 -import varify_client._fetchVCF as fetchVCF +import varify_client.fetchVCF as fetchVCF enclosing_dir = dirname(__file__) demo_vcf_response_path = join(enclosing_dir, "data/demoResponse") diff --git a/varify_client/_fetchVCF.py b/varify_client/fetchVCF.py similarity index 100% rename from varify_client/_fetchVCF.py rename to varify_client/fetchVCF.py