-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (41 loc) · 1.12 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
[build-system]
requires = ["setuptools >= 61.2"]
build-backend = 'setuptools.build_meta'
[project]
name = "nxscli-mpl"
version = "0.5.0"
authors = [{name = "raiden00", email = "[email protected]"}]
description = "Nxscli Matplotlib extension"
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"nxscli>=0.5.0",
"matplotlib>=3.6",
"click>=8.1"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Embedded Systems",
"Operating System :: OS Independent",
]
keywords = [
"nuttx",
"nxscli",
]
[project.urls]
Changelog = "https://github.com/railab/nxscli-mpl/blob/master/CHANGES.md"
Homepage = "https://github.com/railab/nxscli-mpl"
[project.entry-points."nxscli.extensions"]
plugins = "nxscli_mpl.ext_plugins"
commands = "nxscli_mpl.ext_commands"
[tool.black]
line-length = 79
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 79