-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.23 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
[tool.poetry]
name = "graphedexcel"
version = "0.0.0" # set in build pipeline
description = "Tool to analyze and visualize dependencies between cells in Excel spreadsheets"
authors = ["Christian Dalager <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/dalager/graphedexcel"
repository = "https://github.com/dalager/graphedexcel"
documentation = "https://github.com/dalager/graphedexcel"
keywords = ["excel", "graph", "dependencies", "visualization"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.10"
networkx = ">=3.3"
openpyxl = ">=3.1"
matplotlib = ">=3.9"
scipy = ">=1.14"
[tool.poetry.dev-dependencies]
black = "24.10.0"
pytest = "8.3.4"
pytest-cov = ">=3.0.0"
flake8 = ">=6.0.0"
codecov = ">=2.1.11"
bandit = { extras = ["baseline", "toml"], version = "^1.8.3" }
[tool.poetry.scripts]
graphedexcel = "graphedexcel.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra --cov=graphedexcel --cov-report=xml --cov-report=term"
[tool.bandit]
exclude_dirs = ["venv"]