Skip to content
Snippets Groups Projects
Select Git revision
  • 75095c452643a58eb4da237fb9f438d1d8bb9585
  • master default protected
  • dev_nanopore
  • 2.0_beta
  • V_3.0
  • v_2.1
  • V_2.0
  • V_1.9.6
  • v_1.9.6
  • v_1.9.5
  • v_1.9.4
  • V_1.9.3
  • V_1.9.2
  • V_1.9.1
  • V_1.9
  • V_1.8
  • V_1.6
  • 1.5.1
  • V_1.5
  • V1.4
  • V1.3
21 results

ReadProcessor.cpp

Blame
  • setup.py 1.33 KiB
    # Copyright (C) 2023 Blaise Li
    #
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with this program.  If not, see <https://www.gnu.org/licenses/>.
    from setuptools import setup, find_packages
    #from Cython.Build import cythonize
    
    # Adapted from Biopython
    __version__ = "Undefined"
    for line in open('libsnp/__init__.py'):
        if (line.startswith('__version__')):
            exec(line.strip())
    
    
    setup(
        name="libsnp",
        #version=libworkflows.__version__,
        version=__version__,
        description="Miscellaneous things to deal with SNP data.",
        author="Blaise Li",
        author_email="blaise.li@normalesup.org",
        license="GNU GPLv3",
        packages=find_packages(),
        install_requires=[
            "pandas",
            "pysam"]
        )
        #ext_modules = cythonize("libsnp/libsnp.pyx"),
        #install_requires=["cytoolz"],
        #zip_safe=False