Skip to content
Snippets Groups Projects
Select Git revision
  • ca016a9e8f2f0cc19557b5cb64a3e6906790cc7c
  • main default protected
  • dev protected
  • tclabby-main-patch-92350
  • tclabby-main-patch-26246
  • operon-struct-type
  • operon-struct-type-article
  • remove-duplicate-structure-Lamassu-Fam_PDDEXK
  • operon-struct-type-article-update
  • system-distribution-plot
  • update-article-auto-sections
  • genome-context-system
  • select-columns
  • mao
  • ftesson_abip2
  • ftesson_abia
  • ftesson_abij
  • ftesson_abiz
  • ftesson_abie
  • ftesson_abir
  • ftesson_abii
21 results

PlotFigure.js

Blame
  • setup.py 457 B
    from setuptools import setup, find_packages
    from Cython.Build import cythonize
    
    setup(
        name="libsmallrna",
        version="0.2",
        description="Miscellaneous things to deal with small RNA",
        author="Blaise Li",
        author_email="blaise.li@normalesup.org",
        license="MIT",
        # packages=["libsmallrna"],
        ext_modules = cythonize("libsmallrna/libsmallrna.pyx"),
        install_requires=["cytoolz"],
        zip_safe=False,
        packages=find_packages())