This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
85 lines (74 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
[tool.poetry]
name = "git-portfolio"
version = "1.1.1"
description = "Git Portfolio"
authors = ["staticdev <staticdev-support@proton.me>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/staticdev/git-portfolio"
repository = "https://github.com/staticdev/git-portfolio"
documentation = "https://git-portfolio.readthedocs.io"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.urls]
Changelog = "https://github.com/staticdev/git-portfolio/releases"
[tool.poetry.dependencies]
python = ">=3.9.0"
click = ">=8.0.0,<9"
"github3.py" = ">=3.2.0"
inquirer = ">=2.10.1"
pyyaml = ">=5.3.1"
[tool.poetry.dev-dependencies]
bandit = ">=1.7.4"
black = ">=22.6.0"
coverage = {extras = ["toml"], version = ">=6.5.0"}
flake8 = ">=6.0.0"
flake8-bugbear = ">=22.12.6"
flake8-docstrings = ">=1.6.0"
furo = ">=2021.11.12"
mypy = ">=0.991"
pep8-naming = ">=0.13.2"
pre-commit = ">=2.20.0"
pre-commit-hooks = ">=4.4.0"
pytest = ">=7.2.0"
pytest_mock = ">=3.10.0"
safety = ">=2.3.1"
sphinx = ">=5.1.1"
sphinx-autobuild = ">=2021.3.14"
sphinx-click = ">=4.3.0"
typeguard = ">=2.13.3"
types-PyYAML = ">=6.0.12"
pyupgrade = ">=3.3.1"
xdoctest = {extras = ["colors"], version = ">=1.1.0"}
[tool.poetry.scripts]
gitp = "git_portfolio.__main__:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["git_portfolio", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[[tool.mypy.overrides]]
module = ["github3.*", "inquirer", "pytest_mock"]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"