Select Git revision
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