-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
64 lines (53 loc) · 1.34 KB
/
pyproject.toml
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
[tool.poetry]
name = "shrinkray"
version = "0.0.0"
description = "Shrink Ray"
authors = ["David R. MacIver <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/DRMacIver/shrinkray"
repository = "https://github.com/DRMacIver/shrinkray"
documentation = "https://shrinkray.readthedocs.io"
classifiers = [
"Development Status :: 3 - Alpha",
]
[tool.poetry.urls]
Changelog = "https://github.com/DRMacIver/shrinkray/releases"
[tool.poetry.dependencies]
python = ">=3.12, <4.0"
click = ">=8.0.1"
chardet = "^5.2.0"
trio = "^0.22.2"
urwid = "^2.2.3"
humanize = "^4.9.0"
libcst = "^1.1.0"
exceptiongroup = "^1.2.0"
binaryornot = "^0.4.4"
[tool.poetry.scripts]
shrinkray = "shrinkray.__main__:main"
[tool.poetry.group.dev.dependencies]
hypothesis = "^6.92.1"
hypothesmith = "^0.3.1"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["shrinkray", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.isort]
profile = "black"
force_single_line = false
lines_after_imports = 2
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_context = true
disable_error_code = ["import-untyped"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"