-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (43 loc) · 1.24 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
[tool.poetry]
name = "mypy-extras"
description = "A collection of extra types and features for mypy"
version = "0.1.0"
license = "MIT"
authors = [
"Nikita Sobolev <mail@sobolevn.me>",
]
readme = "README.md"
repository = "https://github.com/wemake.services/mypy-extras"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5"
wemake-python-styleguide = "^0.18"
flake8-pytest-style = ">=1.5,<3.0"
nitpick = ">=0.34,<0.36"
doc8 = "^1.1"
pytest = ">=7.3,<9.0"
pytest-cov = ">=4,<6"
pytest-randomly = "^3.12"
pytest-mypy-plugins = "^3.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=6.2,<8.0"
sphinx-autodoc-typehints = ">=1.12,<3.0"
sphinxcontrib-mermaid = ">=0.9,<1.1"
added-value = "^0.24"
m2r2 = "^0.3"
tomli = "^2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/0.18.0/styles/nitpick-style-wemake.toml"