-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 1017 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 1017 Bytes
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
[tool.poetry]
name = "importspy"
version = "0.4.10"
description = "ImportSpy ensures structural integrity, runtime compliance, and security for external modules, preventing inconsistencies and enforcing controlled execution."
license = "MIT"
authors = ["Luca Atella <atellaluca@outlook.it>"]
readme = "README.md"
packages = [{include = "importspy", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.9.2"
ruamel-yaml = ">=0.18.10,<0.20.0"
typer = "^0.15.2"
pymdown-extensions = "^10.16.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
mkdocs = "^1.6.1"
mkdocstrings = {version = "^0.30.0", extras = ["python"]}
mkdocs-material = "^9.6.16"
ruff = "^0.12.10"
mypy = "^1.17.1"
pytest-cov = "^6.2.1"
build = "^1.3.0"
[tool.poetry.urls]
Repository = "https://github.com/atellaluca/importspy"
Documentation = "https://importspy.readthedocs.io"
[tool.poetry.scripts]
importspy = "importspy.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"