forked from collab-uniba/pynblint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (53 loc) · 1.3 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
[tool.poetry]
name = "pynblint"
version = "0.1.6"
description = "A linter for Jupyter notebooks written in Python."
authors = ["Luigi Quaranta <[email protected]>"]
license = "MIT License"
readme = "README.md"
homepage = "https://pynblint.readthedocs.io/en/latest/"
repository = "https://github.com/collab-uniba/pynblint"
keywords = ["Jupyter", "notebook", "lint", "quality assurance", "static analysis"]
classifiers = [
"Environment :: Console",
"Framework :: Jupyter",
"Topic :: Software Development :: Quality Assurance"
]
include = [
"LICENSE"
]
[tool.poetry.scripts]
pynblint = "pynblint.main:app"
[tool.poetry.dependencies]
python = "^3.8"
nbformat = "^5.10.4"
nbconvert = "^7.16.4"
GitPython = "^3.1.43"
rich = "^13.7.1"
typer = "^0.12.3"
pydantic = "^2.8.2"
ipython = "^8"
pydantic-settings = "^2.3.4"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.2.4"
black = "^24.4.2"
pytest = "^8.3.1"
bandit = "^1.7.9"
mypy = "^1.11.0"
flake8 = "^4.0.1"
isort = "^5.13.2"
pylint = "^3.2.6"
pre-commit = "^2.17.0"
pydocstyle = "^6.3.0"
coverage = "^7.6.0"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
skip_gitignore = true
[tool.flake8]
max-line-length = 88
[tool.bandit]
exclude_dirs = ["tests"]