diff --git a/bin/chisel-calling.py b/bin/chisel_calling.py similarity index 100% rename from bin/chisel-calling.py rename to bin/chisel_calling.py diff --git a/bin/chisel-cloning.py b/bin/chisel_cloning.py similarity index 100% rename from bin/chisel-cloning.py rename to bin/chisel_cloning.py diff --git a/bin/chisel-plotting.py b/bin/chisel_plotting.py similarity index 100% rename from bin/chisel-plotting.py rename to bin/chisel_plotting.py diff --git a/bin/chisel-pseudonormal.py b/bin/chisel_pseudonormal.py similarity index 100% rename from bin/chisel-pseudonormal.py rename to bin/chisel_pseudonormal.py diff --git a/setup.py b/setup.py index cc3477c..49dec4a 100644 --- a/setup.py +++ b/setup.py @@ -1,20 +1,21 @@ import setuptools +from setuptools import setup setuptools.setup( name='chisel', version='0.1', - python_requires='2.7', + python_requires='<3', scripts=['bin/chisel.py', 'bin/chisel-calling.py', 'bin/chisel-cloning.py', 'bin/chisel-plotting.py', - 'bin/chisel-pseudonormal.py'] + 'bin/chisel-pseudonormal.py'], author='Simone Zaccaria', author_email='zaccaria@princeton.edu', description='Copy-number Haplotype Inference in Single-cell by Evolutionary Links', long_description='https://github.com/raphael-group/chisel', - long_description_content_type='text/markdown', +# long_description_content_type='text/markdown', url='https://github.com/ENCODE-DCC/caper', packages=setuptools.find_packages(exclude=['conda', 'demos', @@ -47,9 +48,9 @@ 'single-cell', 'DNA', 'copy-number'], - entry_points={'console_scripts': ['chisel = bin.chisel:main', - 'chisel-calling = bin.chisel-calling:main', - 'chisel-cloning = bin.chisel-cloning:main', - 'chisel-plotting = bin.chisel-plotting:main', - 'chisel-pseudonormal = bin.chisel-pseudonormal:main']} + entry_points={'console_scripts': ['chisel=bin.chisel:main', + 'chiselcalling=bin.chisel_calling:main', + 'chisel-cloning=bin.chisel_cloning:main', + 'chisel-plotting=bin.chisel_plotting:main', + 'chisel-pseudonormal=bin.chisel_pseudonormal:main']} )