-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (41 loc) · 1.14 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
[tool.poetry]
name = "safe-assert"
version = "0.5.0"
description = "Safe assert for Python that can be used together with optimised mode"
license = "MIT"
authors = [
"sobolevn <mail@sobolevn.me>"
]
readme = "README.md"
repository = "https://github.com/wemake-services/safe-assert"
keywords = [
"assert",
"utility",
"helper",
"optimized mode"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.urls]
"Funding" = "https://github.com/sponsors/wemake-services"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
mypy = "^1.9"
wemake-python-styleguide = "^0.19"
flake8-pytest-style = ">=1.5,<3.0"
nitpick = "^0.35"
pytest = "^8.1"
pytest-cov = ">=5,<7"
pytest-randomly = "^3.12"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/0.19.2/styles/nitpick-style-wemake.toml"