-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (27 loc) · 929 Bytes
/
Copy pathsetup.py
File metadata and controls
41 lines (27 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
#-*- coding: utf-8 -*-
from setuptools import setup, find_packages
import handle_umis
setup(
name='handle_umis',
version=handle_umis.__version__,
packages=find_packages(),
author='Gabriel Pires',
author_email='gabriel.pires081196@gmail.com',
description='Module that handle UMIs for the pipeline SAIP using smCounter2',
long_description=open('README.md').read(),
install_requires = [
"setuptools>=1.1",
"pysam>=0.15.2"],
include_package_data=True,
scripts=['handle-umis'],
classifiers=[
"Programming Language :: Python",
"Development Status :: 1",
"Natural Language :: English",
"Operating System :: LINUX",
"Programming Language :: Python :: 3.7.3",
"Topic :: Bioinfo",
],
license="",
)