-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
75 lines (60 loc) · 1.5 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
[tool.poetry]
name = "lambdas"
version = "0.2.0"
description = "Typed lambdas that are short and readable"
license = "BSD-2-Clause"
authors = [
"sobolevn <mail@sobolevn.me>"
]
readme = "README.md"
repository = "https://github.com/dry-python/lambdas"
homepage = "https://lambdas.readthedocs.io"
keywords = [
"functional programming",
"fp",
"lambda",
"lambdas",
"composition",
"type-safety",
"mypy",
"stubs"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4"
typing-extensions = ">=4.0,<5.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
wemake-python-styleguide = "^0.18"
flake8-pytest = "^1.4"
flake8-pytest-style = "^1.7"
flake8-pyi = "^23.6"
nitpick = "^0.34"
safety = "^2.3"
pytest = "^7.4"
pytest-cov = "^4.1"
pytest-randomly = "^3.15"
pytest-mypy-plugins = "^3.0"
doc8 = "^1.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^6.2"
sphinx-autodoc-typehints = "^1.23"
sphinxcontrib-mermaid = "^0.9"
sphinx-typlog-theme = "^0.8"
m2r2 = "^0.3"
tomlkit = "^0.12"
pygments = "^2.16"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/0.18.0/styles/nitpick-style-wemake.toml"
[build-system]
requires = ["poetry-core>=1.6.0"]
build-backend = "poetry.core.masonry.api"