-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 1.17 KB
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
[build-system]
requires = ["hatchling>=1.20.0"]
build-backend = "hatchling.build"
[project]
name = "dotenvcheck"
version = "0.1.9"
description = "Cross-check environment variables used in Python code against .env and docker-compose."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [{ name = "Dipendra Pant", email = "dipendrapant778@gmail.com" }]
keywords = ["env", "dotenv", "linter", "devops", "ci"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities"
]
dependencies = [
"tomli>=2.0.1; python_version < '3.11'"
]
[project.optional-dependencies]
compose = ["PyYAML>=6.0.1"]
[project.scripts]
dotenvcheck = "envguard.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/envguard"]
[tool.envguard]
# future: configuration via pyproject, e.g. fail_on = ["missing","typos"]
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = ["src"]
[tool.coverage.run]
source = ["envguard"]
branch = true
[tool.hatch.build.targets.sdist]
include = [
"src/envguard",
"pyproject.toml",
"README.md",
"LICENSE"
]