-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 869 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 869 Bytes
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
[project]
name = "jiddra"
version = "0.1.0"
description = "Multi-language dual-context rank cipher"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"scipy>=1.11",
"flask>=3.0",
]
[tool.uv]
package = false
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "N", "UP", "B", "C4", "SIM", "TCH"]
ignore = [
"E501", # line-too-long: cosmetic, handled by the formatter
"N803", # uppercase locals/args (LETTERS, ALPHABET, VOWEL_SET) are the
"N806", # codebase's convention for cached per-language constants
]
[tool.ruff.lint.isort]
known-first-party = ["cipher", "common", "lang"]
[tool.mypy]
python_version = "3.10"
[dependency-groups]
dev = [
"mypy>=2.1.0",
"ruff>=0.15.17",
"scipy-stubs>=1.15.3.0",
]