-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 890 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
[project]
name = "fsapi-tools"
version = "2.0.4"
description="Frontier Smart Firmware Tools and FSAPI Implementation."
authors = [
{ name="MatrixEditor", email="not@supported.com" },
]
readme = "README.md"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
[project.urls]
"Homepage" = "https://github.com/MatrixEditor/frontier-smart-api"
"API-Docs" = "https://matrixeditor.github.io/frontier-smart-api/"
[project.scripts]
isutool = "fsapi.isu.cli:main"
fsapi-xdr = "fsapi.ecmascript.cli:main"
fsapi-ctl = "fsapi.net.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["fsapi*"]