-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (75 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (75 loc) · 1.99 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyrox"
version = "3.6.14"
authors = [{ name = "Brian LaFond", email = "Brian.L.LaFond@gmail.com" }]
description = "Python based irox engine."
readme = "README.md"
requires-python = ">=3.13.9"
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3.13",
]
dependencies = [
"lxml",
"openpyxl",
"pandas",
"Pillow>=9.0.0",
"platformdirs",
"pyinstaller==6.15.0",
"pylogix",
"PyPDF2",
"pdfplumber",
"py7zr",
"PyMuPDF",
"pytest",
"python-dotenv",
"pyyaml>=6.0",
"PyQt6",
"tomli",
"xmltodict",
]
license = { file = "LICENSE" }
keywords = ["python", "pyqt6", "api"]
[tool.hatch.build.targets.wheel]
include = ["pyrox/**"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s | %(name)s | %(levelname)s | %(message)s"
log_cli_date_format = "%m/%d/%Y, %H:%M:%S"
[tool.pylint.main]
jobs = 0
py-version = "3.13.9"
extension-pkg-allow-list = ["lxml"]
extension-pkg-whitelist = ["PyQt6"]
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-few-public-methods",
"line-too-long",
]
[tool.pylint.basic]
good-names = ["i", "j", "k", "ex", "Run", "_", "id", "db", "pk"]
[tool.pylint.reports]
# Simplify console output by disabling the long text report summary
reports = "no"
[project.urls]
Homepage = "https://github.com/iroxusux/Pyrox"
Issues = "https://github.com/iroxusux/Pyrox/issues"