From be969c265cf2b5022ee86c95def711f4ff9ed3a5 Mon Sep 17 00:00:00 2001 From: Tim Webster Date: Wed, 20 Sep 2017 17:27:41 -0700 Subject: [PATCH] missing comma in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c75ab07..241d89c 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup_requires=['pytest-runner'], tests_require=['pytest'], install_requires=[ - 'matplotlib', 'numpy', 'pandas', 'pybedtools', 'pysam', 'scipy'] + 'matplotlib', 'numpy', 'pandas', 'pybedtools', 'pysam', 'scipy'], entry_points={ "console_scripts": ['xyalign = xyalign.xyalign:main']}, )