-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 762 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 762 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
[build-system]
requires = ["setuptools==70.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["rubix_cli*"]
[tool.setuptools.package-data]
"*" = ["*.py-snippet"]
[project]
name = "rubix-cli"
version = "1.1.0"
authors = [
{ name = "zNitche" },
]
description = "command line tools for interacting with MCUs running MicroPython"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
[project.scripts]
rubix-cli = "rubix_cli.cli:run"
[project.urls]
Homepage = "https://github.com/zNitche/rubix-cli"
Issues = "https://github.com/zNitche/rubix-cli/issues"