-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
127 lines (112 loc) · 2.49 KB
/
Copy pathpyproject.toml
File metadata and controls
127 lines (112 loc) · 2.49 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
122
123
124
125
126
127
[project]
name = "genomicranges"
dynamic = [
"version",
]
description = "Container class to represent and operate over genomic regions and annotations."
readme = "README.md"
authors = [
{ name = "Jayaram Kancherla", email = "jayaram.kancherla@gmail.com" },
]
requires-python = ">=3.9"
keywords = [
"bioinformatics",
"genomics",
"bioconductor",
"biocpy",
"genomicranges",
"ranges",
"intervals",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"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",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
]
dependencies = [
"biocframe>=0.8.0",
"biocutils>=0.4.0",
"compressed-lists>=0.4.3",
"iranges>=0.7.2",
"numpy",
]
[project.license]
file = "LICENSE.txt"
[project.urls]
Homepage = "https://github.com/BiocPy/genomicranges"
Documentation = "https://biocpy.github.io/genomicranges/"
Source = "https://github.com/BiocPy/genomicranges"
"Bug Tracker" = "https://github.com/BiocPy/genomicranges/issues"
[project.optional-dependencies]
optional = [
"biobear; python_version < '3.14'",
"joblib",
"matplotlib",
"pandas",
"polars",
]
testing = [
"biobear; python_version < '3.14'",
"joblib",
"matplotlib",
"pandas",
"polars",
"pytest",
"pytest-cov",
"rich",
"seaborn",
]
[build-system]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
fallback-version = "0.1.0"
[tool.ruff]
line-length = 120
src = [
"src",
]
exclude = [
"tests",
"docs",
]
[tool.ruff.lint]
extend-ignore = [
"F821",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
"E402",
"F401",
]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 20
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--cov --cov-report term-missing"
testpaths = [
"tests",
]
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B110"]