-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (100 loc) · 3.22 KB
/
pyproject.toml
File metadata and controls
115 lines (100 loc) · 3.22 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
110
111
112
113
114
115
[build-system]
requires = ["hatchling >= 1.27.0, < 2.0.0", "hatch-vcs == 0.4.*"]
build-backend = "hatchling.build"
[project]
name = "bulkinvoicer"
description = "A simple python script to quickly create bulk invoices."
dynamic = ["version"]
dependencies = [
"polars[calamine] >= 1.29.0, < 2.0.0",
"qrcode >= 8.2, < 9.0",
"fpdf2 >= 2.8.3, < 3.0.0",
"uharfbuzz",
"tqdm >= 4.67.1, < 5.0.0",
"pydantic >= 2.11.7, < 3.0.0",
'tomli ; python_version < "3.11"',
]
requires-python = ">=3.10"
authors = [
{ name = "Yashovardhan Dhanania", email = "yashovardhandhanania@gmail.com" },
]
maintainers = [
{ name = "Yashovardhan Dhanania", email = "yashovardhandhanania@gmail.com" },
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["finance", "invoice", "receipts", "bill", "pdf"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial",
"Typing :: Typed",
]
[project.optional-dependencies]
[project.urls]
Homepage = "http://github.com/yashovardhan99/bulkinvoicer"
Repository = "https://github.com/yashovardhan99/bulkinvoicer.git"
Changelog = "http://github.com/yashovardhan99/bulkinvoicer/blob/master/CHANGELOG.md"
Issues = "http://github.com/yashovardhan99/bulkinvoicer/issues"
funding = "https://github.com/yashovardhan99/bulkinvoicer"
releasenotes = "https://github.com/yashovardhan99/bulkinvoicer/releases"
[project.scripts]
invoicer = "bulkinvoicer.cli:main"
[dependency-groups]
testing = ["pytest >= 8.3.5, < 9.0.0", "coverage[toml] >= 7.8.0, < 8.0.0"]
linting = ["ruff >= 0.11.9, < 0.12.0", "mypy >= 1.15.0, < 2.0.0"]
stubs = ["types-qrcode", "types-fpdf2", "types-tqdm"]
docs = []
dev = [
{ include-group = "testing" },
{ include-group = "linting" },
{ include-group = "stubs" },
{ include-group = "docs" },
]
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
"D", # Docstrings
"B", # Bugbear
"Q", # Quotes
"UP", # PyUpgrade
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
docstring-code-format = true
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
# Don't complain about missing debug-only code:
"def __repr__",
"if logger\\.isEnabledFor\\(logging\\.DEBUG\\)",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if 0:",
"if __name__ == .__main__.:",
# Don't complain about abstract methods, they aren't run:
"@(abc\\.)?abstractmethod",
# Don't complaint about type-checking code, it isn't run:
"if TYPE_CHECKING",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"