-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
121 lines (108 loc) · 2.82 KB
/
Copy pathpyproject.toml
File metadata and controls
121 lines (108 loc) · 2.82 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "recount3"
dynamic = ["version"]
description = "API and CLI to discover, download, and assemble recount3 resources."
dependencies = [
"numpy>=2.0,<3.0",
"pandas>=2.2,<3.0",
"scipy>=1.13,<2.0",
]
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.10"
license = "BSD-3-Clause-Clear"
license-files = ["LICENSE"]
authors = [
{ name = "Alexander A. Alsalihi" },
{ name = "Robert M. Flight" },
{ name = "Hunter N.B. Moseley" }
]
maintainers = [
{ name = "Moseley Bioinformatics Lab" }
]
keywords = [
"bioinformatics",
"genomics",
"recount3",
"RNA-seq",
"CLI",
"data-pipelines",
"manifests",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
# Console entry point: `recount3`
[project.scripts]
recount3 = "recount3.cli:main"
[project.urls]
Homepage = "https://github.com/MoseleyBioinformaticsLab/recount3"
Repository = "https://github.com/MoseleyBioinformaticsLab/recount3"
Issues = "https://github.com/MoseleyBioinformaticsLab/recount3/issues"
Documentation = "https://moseleybioinformaticslab.github.io/recount3/"
Changelog = "https://github.com/MoseleyBioinformaticsLab/recount3/blob/main/CHANGELOG.rst"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["recount3*"]
[tool.setuptools.package-data]
recount3 = ["py.typed"]
[tool.setuptools.dynamic]
version = { attr = "recount3.version.__version__" }
[project.optional-dependencies]
bigwig = [
"pybigwig>=0.3.18",
]
biocpy = [
"biocframe>=0.7",
"genomicranges>=0.8",
"summarizedexperiment>=0.6",
]
docs = [
"sphinx>=7",
"sphinx-rtd-theme>=2",
]
dev = [
"pytest>=8,<9",
"pytest-cov>=5,<6",
"pytest-mock>=3.12,<4",
"pytest-xdist>=3,<4",
"pylint>=3.2,<4",
"build>=1.2",
"twine>=5",
]
all = [
"recount3[bigwig,biocpy,docs,dev]"
]
[tool.black]
line-length = 80
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
skip_covered = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
]