-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.34 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
[tool.poetry]
name = "databooks"
version = "0.0.0-dev" # dynamically set in CI
description = "A CLI tool to resolve git conflicts and remove metadata in notebooks."
authors = ["Murilo Cunha <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://datarootsio.github.io/databooks/"
repository = "https://github.com/datarootsio/databooks/"
keywords = ["jupyter-notebooks", "cli"]
[tool.poetry.scripts]
databooks = "databooks.cli:app"
[tool.poetry.dependencies]
python = "^3.7"
typer = ">=0.4.0,<1.0.0"
rich = "^12.6.0"
pydantic = "^2.3"
GitPython = "^3.1.24"
tomli = "^2.0.1"
typing-extensions = "^4.0.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.17.0"
pytest = "^7.2.0"
pytest-cov = "^3.0.0"
mike = "^1.1.2"
mkdocstrings = "^0.17.0"
mkdocs-material = "^8.0.5"
mkdocs-autorefs = "^0.3.1"
mkdocs-coverage = "^0.2.4"
Jinja2 = "3.0.3" # older versions have breaking changes for `mike`
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Devtools not in environment, but used in `pre-commit`
[tool.black]
include = "(databooks/|tests/)"
extend-exclude = "tests/files/"
[tool.mypy]
files = ["databooks", "tests"]
show_error_codes = true
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
warn_no_return = false
[tool.isort]
skip_glob = ["docs/*"]
profile = "black"