-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (101 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
109 lines (101 loc) · 2.11 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
[project]
name = "participation-certificate"
version = "0.9.0"
description = "Generate participation certificates for events."
authors = [
{name = "Alexander CS Hendorf", email = "hendorf@gmail.com"}
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.12"
dependencies = [
"colorama",
"structlog",
"fpdf2",
"pydantic[email]",
"endesive",
"omegaconf",
"pandas>=2.2.2",
"openpyxl>=3.1.2",
"httpx>=0.27",
"pypdf>=6.11.0",
"reportlab>=4.5.0",
"pandas-stubs~=2.3.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-md",
"pytest-emoji",
"hypothesis",
"pytest-cov",
"ruff>=0.4.8",
"mypy",
"pre-commit",
]
docs = [
"mkdocs>=1.6.1,<2",
"mkdocs-material[imaging]>=9.5.39,<10",
"pymdown-extensions>=10.11.2,<11",
"mkdocs-glightbox>=0.4.0,<0.5",
"mkdocs-open-in-new-tab>=1.0.5,<2",
]
build = [
"bumpversion>=0.6.0,<0.7",
]
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/PioneersHub/participation_certificate"
Repository = "https://github.com/PioneersHub/participation_certificate"
Documentation = "https://pioneershub.github.io/participation_certificate/"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = [
# pyflakes
"F",
# pycodestyle
"E", "W",
# flake8-builtins
"A",
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# flake8-simplify
"SIM",
# flake8-unused-arguments
"ARG",
# pylint
"PL",
# tidy
"TID",
# isort
"I",
# pep8-naming
"N",
# pyupgrade
"UP"
]
ignore = [
# may cause conflicts with ruff formatter
"E501",
"W191"
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
[tool.setuptools.packages.find]
where = ["."]
include = ["participation_certificate*"]