-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
74 lines (57 loc) · 1.52 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
[tool.poetry]
name = "dotenv-linter"
version = "0.5.0"
description = "Linting dotenv files like a charm!"
authors = [
"sobolevn <[email protected]>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/wemake-services/dotenv-linter"
homepage = "https://dotenv-linter.readthedocs.io"
keywords = [
"dotenv",
"linter",
"wemake.services",
"code quality"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.dependencies]
python = "^3.9"
ply = "^3.11"
click = ">=6,<9"
click_default_group = "^1.2"
attrs = "*"
typing_extensions = ">=4.0,<5.0"
[tool.poetry.group.dev.dependencies]
wemake-python-styleguide = "^0.18"
flake8-pytest-style = "^1.6"
nitpick = "^0.35"
pytest = "^8.1"
pytest-cov = ">=4.1,<7.0"
pytest-randomly = "^3.12"
codespell = "^2.2"
doc8 = "^1.1"
mypy = "^1.9"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=5.2,<8.0"
sphinx-autodoc-typehints = ">=1.23,<3.0"
sphinx-click = ">=3.1,<7.0"
m2r2 = "^0.3"
tomli = "^2.0"
[tool.poetry.scripts]
dotenv-linter = "dotenv_linter.cli:cli"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"