Skip to content

Commit

Permalink
Packaging CHISEL with setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
simozacca committed Jul 14, 2020
1 parent afa9aa1 commit 0deebbc
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
1 change: 1 addition & 0 deletions bin/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.1'
55 changes: 55 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import setuptools


setuptools.setup(
name='chisel',
version='0.1',
python_requires='2.7',
scripts=['bin/chisel.py',
'bin/chisel-calling.py',
'bin/chisel-cloning.py',
'bin/chisel-plotting.py',
'bin/chisel-pseudonormal.py']
author='Simone Zaccaria',
author_email='[email protected]',
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',
url='https://github.com/ENCODE-DCC/caper',
packages=setuptools.find_packages(exclude=['conda',
'demos',
'doc',
'demos',
'guides',
'man']),
install_requires=[
'numpy==1.16.1',
'scipy==1.2.1',
'pandas==0.20.1',
'matplotlib==2.0.2',
'seaborn==0.7.1'
],
license='BSD',
platforms=["Linux", "MacOs", "Windows"],
classifiers=[
'Programming Language :: Python :: 2.7',
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords=[
'scientific',
'sequence analysis',
'cancer',
'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']}
)
1 change: 1 addition & 0 deletions src/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.1'

0 comments on commit 0deebbc

Please sign in to comment.