-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
89 lines (75 loc) · 1.94 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
[tool.mypy]
strict_optional = false
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts= """
--html=test_results/results.html \
--self-contained-html \
--junitxml=test_results/results.xml \
--disable-warnings
"""
log_file_level="INFO"
[tool.ruff]
[tool.ruff.lint]
# Enable Pyflakes `E` and `F` codes by default.
select = ["E", "F", "PL", "YTT", "I"]
ignore = ["E501", "PLR2004"]
fixable = ["I"]
[tool.ruff.lint.pylint]
max-args = 10
[tool.isort]
profile = "black"
[tool.setuptools_scm]
[tool.poetry]
name = "rubrical"
version = "0.0.0"
description = "A CLI to encourage (😅) people to update their dependencies!"
authors = ["Ivan Lee <ivanklee86@gmail.com>"]
license = "MPL-2.0"
homepage = "https://github.com/ivanklee86/rubrical"
repository = "https://github.com/ivanklee86/rubrical"
readme = "README.md"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
[tool.poetry.scripts]
rubrical = "rubrical.main:app"
[tool.poetry.dependencies]
python = "^3.12"
typer = {extras = ["all"], version = "^0.15.0"}
pydantic = "^2.5.2"
semver = "^3.0.2"
pygithub = "^2.0.0"
python-benedict = {extras = ["all"], version = "^0.34.0"}
pyyaml = "^6.0"
requirements-parser = "^0.11.0"
pyproject-parser = "^0.11.0"
setuptools = "^75.0.0"
dom-toml = "^2.0.0"
requirements-detector = "^1.3.2"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
black = "^24.0.0"
mypy = "^1.7.1"
pytest = "^8.0.0"
pytest-cov = "^6.0.0"
pytest-html = "^4.0.0"
pytest-mock = "^3.10.0"
pytest-xdist = "^3.0.2"
setuptools-scm = "^8.0.0"
twine = "^6.0.0"
pre-commit = "^4.0.0"
isort = "^5.13.1"
ruff = "^0.8.0"
python-dotenv = "^1.0.0"
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.4"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"