-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
35 lines (32 loc) · 886 Bytes
/
setup.cfg
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
[metadata]
name = demultiplex
version = 1.2.2
description = Demultiplex any number of FASTA or a FASTQ files based on a list of barcodes
long_description = file: README.rst
author = Jeroen F.J. Laros
author_email = [email protected]
url = https://github.com/jfjlaros/demultiplex
keywords = bioinformatics
license = MIT
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
[options]
packages = find:
install_requires =
biopython>=1.72
dict-trie>=1.0.1
fastools>=1.1.0
jit-open>=1.0.1
tssv>=1.1.0
[options.entry_points]
console_scripts =
demultiplex = demultiplex.cli:main
[flake8]
per-file-ignores =
demultiplex/__init__.py: F401