forked from costas-basdekis/gcode-documentation-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (89 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
97 lines (89 loc) · 2.17 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
[project]
name = "gcode-documentation-parser"
version = "0.1.0"
description = "A utility that parses the documentation pages from Marlin, RepRap, and Klipper, to generate an index of commands usage"
authors = [
{ name = "Costas Basdekis", email = "code@basdekis.io" },
{ name = "Thomas Nemer", email = "atom@fortytwo.fr" },
]
readme = "README.md"
license = "MIT"
keywords = [
"gcode",
"marlin",
"reprap",
"klipper",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Topic :: Documentation",
]
dependencies = [
"beautifulsoup4",
"wikitextparser",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/thomasnemer/gcode-documentation-parser"
Repository = "https://github.com/thomasnemr/gcode-documentation-parser"
Documentation = "https://github.com/thomasnemer/gcode-documentation-parser"
[dependency-groups]
dev = [
"ipdb",
"ipython",
"moto",
"mypy",
"pycodestyle",
"pylint",
"pyyaml",
"pytest",
"pytest-env",
"python-dotenv",
"types-beautifulsoup4",
"types-six",
"types-PyYAML",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.mypy]
disable_error_code = "misc"
follow_imports = "silent"
[[tool.mypy.overrides]]
module = "wikitextparser.*"
ignore_missing_imports = true
[tool.pylint.messages_control]
extension-pkg-whitelist = "pydantic"
max-line-length = 88
disable = """,
too-few-public-methods,
fixme,
missing-module-docstring,
invalid-name,
unspecified-encoding,
f-string-without-interpolation,
no-else-return,
redefined-argument-from-local,
wrong-import-order,
"""
score = "no"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--doctest-modules",
"--doctest-continue-on-failure",
# Ignore non-code folders
"--ignore=docs",
"--ignore=venv",
]
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"ELLIPSIS",
"IGNORE_EXCEPTION_DETAIL",
]
pythonpath = "gcode_documentation_parser"