-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (48 loc) · 1.61 KB
/
pyproject.toml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyeasyfuse"
version = "2.0.3"
authors = [
"Patrick Sorn <[email protected]>",
"Jonas Ibn-Salem <[email protected]>",
"Christoph Holsträter <[email protected]>",
"David Weber <[email protected]>",
"Pablo Riesgo-Ferreiro <[email protected]>",
]
description = "EasyFuse is a pipeline to detect fusion transcripts from RNA-seq data with high accuracy."
readme = "README.md"
keywords = ["bioinformatics", "fusions", "RNA-seq", "transcriptomics"]
license = "LICENSE"
classifiers = [
"Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.7",
]
packages = [{include = "pyeasyfuse"}]
[tool.poetry.group.dev.dependencies]
coverage = {extras = ["toml"], version = "^7.1.0"}
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 80
[tool.setuptools]
py-modules = ["pyeasyfuse"]
[tool.poetry.dependencies]
python = ">=3.7,<3.8"
numpy = "1.21.6"
pandas = "0.24.0"
xxhash = "1.4.3"
biopython = "1.73"
pysam = "0.15.2"
gffutils = "0.10.1"
bx-python = "0.8.2"
logzero = "1.7.0"
pytz = "2022.7.1"
[tool.setuptools.dynamic]
version = {attr = "pyeasyfuse.__version__"}
[tool.poetry.scripts]
easy-fuse = "pyeasyfuse.command_line:easy_fuse_cli"