-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
96 lines (87 loc) · 2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
)/
'''
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-property-decorators = false
ignore-module = true
ignore-nested-functions = false
ignore-nested-classes = true
ignore-setters = false
fail-under = 95
exclude = ["setup.py", "docs", "build"]
ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"]
verbose = 0
quiet = false
whitelist-regex = []
color = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 79
[tool.poetry]
name = "track-job-applications"
version = "1.0.0"
description = "A CLI application to help you track job applications and provide metrics on them."
authors = ["Aditya Gupta <[email protected]>"]
maintainers = ["Aditya Gupta <[email protected]>"]
repository = "https://github.com/Aditya-Gupta1/track-job-applications"
documentation = "https://aditya-gupta1.github.io/track-job-applications/"
keywords = ["python", "typer", "cli", "job tracker"]
license = "MIT"
readme = "README.md"
packages = [
{include = "track"}
]
[tool.poetry.dependencies]
python = "^3.8"
typer = "^0.6.1"
click = "^8.0.0"
SQLAlchemy = "^1.4.41"
rich = "^12.6.0"
[tool.poetry.group.dev.dependencies]
typer = "^0.6.1"
click = "^8.0.0"
SQLAlchemy = "^1.4.41"
rich = "^12.6.0"
pre-commit = "^2.20.0"
black = "^22.10.0"
isort = "^5.10.1"
interrogate = "^1.5.0"
flake8 = "^5.0.4"
pytest = "7.2.0"
faker = "15.1.1"
pytest-mock = "3.10.0"
coverage = "6.5.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocstrings-python = "0.7.1"
mkdocs-bootswatch = "*"
[tool.pytest.ini_options]
log_cli=true
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
track-job = 'track.cli:entry'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Aditya-Gupta1/track-job-applications/issues"