-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.08 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
[project]
name = "bseqgen"
version = "0.1.4"
description = "Library for generating and working with binary sequences."
readme = "README.md"
authors = [
{ name = "bloopycode" }
]
requires-python = ">=3.11"
licence = { text = "MIT" }
dependencies = [
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://github.com/bloopy-code/bseqgen"
Repository = "https://github.com/bloopy-code/bseqgen.git"
Issues = "https://github.com/bloopy-code/bseqgen/issues"
Changelog = "https://github.com/bloopy-code/bseqgen/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"mypy>=1.19.1",
"numpy>=2.4.0",
"numpy-typing-compat>=20251206.2.4",
"pre-commit>=4.5.1",
"pydocstyle>=6.3.0",
"pytest>=9.0.2",
"ruff>=0.14.9",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
[tool.mypy]
warn_unused_configs = true
warn_return_any = true
no_implicit_optional = true
strict_equality = true
disallow_untyped_defs = true
check_untyped_defs = true
pretty = true
show_error_codes = true
mypy_path = "src"