-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (66 loc) · 1.28 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
name = "boilerplate-micropython"
dynamic = ["version", "readme"]
authors = [
{ name="Phil", email="[email protected]" },
]
description = "boilerplate example for MicroPython libraries"
classifiers = [
"License :: OSI Approved :: MIT License"
]
[tool.hatch.version]
path = "src/boilerplate/__init__.py"
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
fragments = [
{ path = "README.md" },
{ text = "\n" },
{ path = "CHANGELOG.md" }
]
[tool.hatch.build]
include = [
"src/boilerplate/__init__.py",
"README.md",
"CHANGELOG.md",
"LICENSE.txt"
]
[tool.hatch.build.targets.wheel]
sources = ["src"]
[tool.ruff]
exclude = [
'.tox',
'.egg',
'.git',
'__pycache__',
'build',
'dist'
]
line-length = 200
[tool.codespell]
skip = """
./.tox,\
./.egg,\
./.git,\
./__pycache__,\
./build,\
./dist.\
"""
[tool.isort]
line_length = 200
[tool.check-manifest]
ignore = [
'check.sh',
'Makefile',
'tox.ini',
'tests/*',
'examples/*',
'tools/*',
'requirements-dev.txt',
'package.json'
]
[project.urls]
GitHub = "https://www.github.com/pimoroni/boilerplate-micropython"
Homepage = "https://www.pimoroni.com"