Skip to content
Snippets Groups Projects
Select Git revision
  • fe070ddfa285d705fe6ea68e7052fbaec4d1f408
  • master default protected
  • exponential-backoff-login
  • v1.10.0
  • v1.9.2
  • v1.9.0
  • v1.8.8
  • v1.8.7
  • v1.8.5
  • v1.8.4
  • v1.8.2
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0.1
  • v1.0
  • v0.2.80
  • v0.2.79
23 results

views.py

Blame
  • setup.py 925 B
    from setuptools import setup, find_packages
    import os
    # OPJ = os.path.join
    # OPA = os.path.abspath
    # OPB = os.path.basename
    from glob import glob
    #from Cython.Build import cythonize
    
    #import libworkflows
    # Adapted from Biopython
    __version__ = "Undefined"
    for line in open('smincludes/__init__.py'):
        if (line.startswith('__version__')):
            exec(line.strip())
    
    # _rule_files = [OPA(rule_file) for rule_file in glob(OPJ("smincludes", "*.rules"))]
    # print(_rule_files)
    
    setup(
        name="smincludes",
        #version=libworkflows.__version__,
        version=__version__,
        description="Rules that can be included in snakemake workflows.",
        author="Blaise Li",
        author_email="blaise.li@normalesup.org",
        license="MIT",
        packages=find_packages(),
        package_data={"smincludes": ["*.rules"]},
        )
        #ext_modules = cythonize("libsmallrna/libsmallrna.pyx"),
        #install_requires=["cytoolz"],
        #zip_safe=False