-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
68 lines (51 loc) · 1.28 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
[tool.poetry]
name = "dump-env"
version = "1.5.0"
description = "A utility tool to create .env files"
license = "MIT"
authors = [
"Nikita Sobolev <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/wemake-services/dump-env"
homepage = "https://dump-env.readthedocs.io"
keywords = [
"dotenv",
".env",
"tempaltes",
"secrets",
"CI/CD"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
[tool.poetry.scripts]
dump-env = "dump_env.cli:main"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest-cov = ">=4,<7"
pytest-randomly = "^3.12"
pytest = "^8.0"
wemake-python-styleguide = ">=0.18,<0.20"
flake8-pytest-style = "^1.5"
nitpick = "^0.35"
mypy = "^1.8"
doc8 = "^1.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2"
sphinx-readable-theme = "^1.3"
m2r2 = "^0.3"
tomli = "^2.0"
[build-system]
requires = ["poetry>=1.9.0"]
build-backend = "poetry.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"