https://github.com/pysam-developers/pysam
Raw File
Tip revision: 42186714ebbe84efdcff5917a52bbf4d13bca1a7 authored by Andreas Heger on 09 November 2015, 22:42:11 UTC
update docstring in setup.py for new release
Tip revision: 4218671
.gitignore
# editor files
*~
*#

# test directory
tests/pysam/
tests/tmp*
tests/*.bam
tests/*.bai
tests/*.gz
tests/*.c
tests/*.pyxbldc
tests/*.sam
tests/*.fai
tests/pysam_data

# cython files
pysam/TabProxies.c
pysam/csamtools.c
pysam/ctabix.c
pysam/cvcf.c
pysam/chtslib.c  

###### Generic python ignores below ######

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

# Sphinx documentation
docs/_build/
back to top