54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
|
|
# SPDX-FileCopyrightText: 2023 Alec Delaney for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: Unlicense
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools",
|
|
"wheel",
|
|
"setuptools-scm",
|
|
]
|
|
|
|
[project]
|
|
name = "adafruit-python-shell"
|
|
description = "Python helper for running Shell scripts in Python"
|
|
version = "0.0.0+auto.0"
|
|
readme = "README.rst"
|
|
authors = [
|
|
{name = "Adafruit Industries", email = "circuitpython@adafruit.com"}
|
|
]
|
|
urls = {Homepage = "https://github.com/adafruit/Adafruit_Python_Shell"}
|
|
keywords = [
|
|
"adafruit",
|
|
"blinka",
|
|
"circuitpython",
|
|
"micropython",
|
|
"python",
|
|
"shell",
|
|
"installation",
|
|
"raspberry",
|
|
"pi",
|
|
"console",
|
|
"terminal",
|
|
"installer",
|
|
]
|
|
license = {text = "MIT"}
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: System :: Hardware",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.4",
|
|
"Programming Language :: Python :: 3.5",
|
|
]
|
|
dynamic = ["dependencies", "optional-dependencies"]
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["adafruit_shell"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
dependencies = {file = ["requirements.txt"]}
|
|
optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}
|