51 lines
1.4 KiB
TOML
51 lines
1.4 KiB
TOML
# SPDX-FileCopyrightText: 2022 Alec Delaney, written for Adafruit Industries
|
|
# SPDX-FileCopyrightText: Copyright (c) 2024 Jerry Needell for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools",
|
|
"wheel",
|
|
"setuptools-scm",
|
|
]
|
|
|
|
[project]
|
|
name = "adafruit-circuitpython-rfm"
|
|
description = "Support for RFM69 and RFM9x modules"
|
|
version = "0.0.0+auto.0"
|
|
readme = "README.rst"
|
|
authors = [
|
|
{name = "Adafruit Industries", email = "circuitpython@adafruit.com"}
|
|
]
|
|
urls = {Homepage = "https://github.com/jerryneedell/Adafruit_CircuitPython_RFM"}
|
|
keywords = [
|
|
"adafruit",
|
|
"blinka",
|
|
"circuitpython",
|
|
"micropython",
|
|
"rfm",
|
|
"RFM69",
|
|
"RFM9x",
|
|
"radio",
|
|
]
|
|
license = {text = "MIT"}
|
|
classifiers = [
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Software Development :: Embedded Systems",
|
|
"Topic :: System :: Hardware",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
dynamic = ["dependencies", "optional-dependencies"]
|
|
|
|
[tool.setuptools]
|
|
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
|
|
# CHANGE `py_modules = ['...']` TO `packages = ['...']`
|
|
#py-modules = ["adafruit_rfm"]
|
|
packages = ["adafruit_rfm"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
dependencies = {file = ["requirements.txt"]}
|
|
optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}
|