-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1011 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (31 loc) · 1011 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
from setuptools import setup
setup(
name='SSfSBT',
version='0.1',
description='Simple Scripts for Simple Bioinformatics Tasks',
author='SimonHegele',
install_requires=[
'matplotlib',
'numpy',
'pandas',
'polars',
'seaborn',
'biopython'
],
package_dir={"": "."},
entry_points={
"console_scripts": [
"fa2fq=fa2fq:main",
"sample=sequence_sample:main",
"lengths=sequence_lengths:main",
"kallisto2nanosim=kallisto2nanosim:main",
"busco_merge=busco_merge:main",
"unambiguous_codes=unambiguous_codes:main",
"rnaQUASTcompare=rnaQUASTcompare:main",
"lr_lordec_contam_filter=lr_lordec_contam_filter:main",
"busco_find=busco_find:main",
"gfa2fa=gfa2fa:main",
"plot_msa=plot_msa:main"
],
},
)