-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (37 loc) · 1008 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.2"]
build-backend = 'setuptools.build_meta'
[project]
name = "nxslib"
version = "0.9.1"
authors = [{name = "raiden00", email = "[email protected]"}]
description = "NxScope client library"
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pyserial>=3.5",
"crcmod>=1.7",
"pylink-square>=1.2",
]
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"
]
[project.urls]
Changelog = "https://github.com/railab/nxslib/blob/master/CHANGES.md"
Homepage = "https://github.com/railab/nxslib"
[tool.black]
line-length = 79
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 79