-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.14 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
[tool.poetry]
name = "chronicle_cli"
version = "0.1.0"
description = "ChronicleCLI is a command-line application for keeping a personal journal"
authors = ["Scott <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.12.3"
pytest = "^8.2.0"
freezegun = "^1.5.1"
inquirerpy = "^0.3.4"
rich = "^13.7.1"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
pylint = "^3.2.1"
autopep8 = "^2.1.0"
pre-commit = "^3.7.1"
[tool.pylint]
disable = ["C0114", "C0115", "C0116"] # Disable missing module, class, and function docstrings
init-hook = 'import sys; sys.path.append(".")'
[tool.mypy]
mypy_path = ["./chronicle_cli"]
explicit_package_bases = true
python_version = "3.12"
plugins = []
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py311']
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| (?!cli|journal\.py$).* # Exclude everything except cli directory and journal.py
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"