Skip to content
Snippets Groups Projects
Commit 799df018 authored by Blaise Li's avatar Blaise Li
Browse files

Trying to package snakemake wrappers properly.

parent e8105a64
No related branches found
No related tags found
No related merge requests found
Showing
with 21 additions and 23 deletions
from setuptools import setup, find_packages
#from Cython.Build import cythonize
# Adapted from Biopython
__version__ = "Undefined"
for line in open('smincludes/__init__.py'):
if (line.startswith('__version__')):
exec(line.strip())
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
File moved
setup.py 0 → 100644
from setuptools import setup, find_packages
setup(
name="snakemake_wrappers",
version=0.2,
description="Snakemake wrappers and 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"],
"wrappers": ["*/wrapper.py"]},
)
File moved
import os
__all__ = ["wrappers_dir"]
# The working directory is that of the importing context.
# __path__ gives access to the package path
wrappers_dir = __path__
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment