-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.28 KB
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
[tool.poetry]
name = "devblog-django"
version = "0.1.0"
description = "My devblog, generated as static assets from a Django-powered skeleton"
authors = ["Olivier Philippon <olivier@dunsap.com>"]
license = "MIT"
packages = [
{ include = "devblog", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.12"
Django = "^5.0.4"
dominate = "^2.9.1"
markdown = "^3.6"
pyyaml = "^6.0.1"
pymdown-extensions = "^10.8.1"
pygments = "^2.17.2"
catppuccin = "^2.2.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.10.0"
ruff = "^0.4.2"
pre-commit = "^3.7.0"
ipython = "^8.24.0"
pywatchman = "^2.0.0"
django-browser-reload = "^1.12.1"
[tool.poetry.group.types.dependencies]
types-markdown = "^3.6.0.20240316"
types-pyyaml = "^6.0.12.20240311"
types-pygments = "^2.18.0.20240506"
[tool.poetry.group.deployment.dependencies]
ghp-import = "^2.1.0"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["F", "I"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.mypy]
# @link https://mypy.readthedocs.io/en/stable/config_file.html#using-a-pyproject-toml
python_version = "3.12"
exclude = []
[[tool.mypy.overrides]]
module = [
"django.*",
"dominate.*",
"catppuccin.*",
]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"