-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 869 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 869 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic=["dependencies"]
version = "0.0.5"
name = "thonny_astro_pi_replay"
description = "A Thonny plugin to use the Astro Pi Replay tool"
authors = [
{ name="Geraint Ballinger", email="geraint.ballinger@raspberrypi.org" }
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/astro-pi/Astro-Pi-Replay"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.isort]
atomic = true
line_length = 88
profile = "black"
skip_gitignore = true
src_paths = ["thonnycontrib"]
skip_glob = ["venv"]
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.pyi?$'
[tool.bandit]
skips = ["B101", "B404"]