-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
82 lines (69 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "enochecker_test"
version = "0.10.0"
description = "Library to help testing checker scripts based on enochecker"
authors = ["ldruschk <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/enowars/enochecker_test"
repository = "https://github.com/enowars/enochecker_test"
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
# 'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"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",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<=4.0"
enochecker-core = "^0.10.0"
jsons = "^1.6.3"
pytest = "^8.2.1"
requests = "^2.32.3"
[tool.poetry.group.test.dependencies]
black = "^24.4.2"
flake8 = "^7.0.0"
isort = "^5.13.2"
mypy = "^1.10.0"
types-requests = "^2.30"
[tool.poetry.scripts]
enochecker_test = "enochecker_test.main:main"
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = "pytest"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "enochecker"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "enochecker_core"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "jsons"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "enochecker_test"
[tool.isort]
profile = "black"
multi_line_output=3
include_trailing_comma = true
line_length = 88
force_grid_wrap = 0
use_parentheses = true