forked from MatthiasLienhard/isotools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
69 lines (64 loc) · 1.62 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools >= 77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "isotools"
authors = [
{ name="Matthias Lienhard", email="lienhard@molgen.mpg.de" },
{ name="Yalan Bi", email="yalan_bi@molgen.mpg.de" },
]
description = "Framework for the analysis of long read transcriptome sequencing data"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dynamic = ["version"]
dependencies = [
"numpy",
"pandas",
"tqdm",
"intervaltree",
"matplotlib",
"seaborn",
"biopython",
"pysam",
"umap-learn",
"scikit-learn",
"scipy",
"statsmodels",
"pyhmmer",
"requests",
"CPAT",
"python-ternary",
]
[project.urls]
Homepage = "https://github.com/HerwigLab/IsoTools2"
Documentation = "https://isotools.readthedocs.io/"
Repository = "https://github.com/HerwigLab/IsoTools2.git"
Issues = "https://github.com/HerwigLab/IsoTools2/issues"
Changelog = "https://github.com/HerwigLab/IsoTools2/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {file = ["VERSION.txt"]}
[tool.pytest.ini_options]
addopts = "--cov=isotools"
testpaths = [
"tests",
]
[tool.mypy]
mypy_path = "src"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true