]> Repositories - hackapet/Adafruit_Blinka_Displayio.git/blobdiff - pyproject.toml
Merge pull request #97 from tekktrik/dev/pyproject-toml-update
[hackapet/Adafruit_Blinka_Displayio.git] / pyproject.toml
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644 (file)
index 0000000..dc2d186
--- /dev/null
@@ -0,0 +1,48 @@
+# SPDX-FileCopyrightText: 2022 Alec Delaney for Adafruit Industries
+#
+# SPDX-License-Identifier: MIT
+
+[build-system]
+requires = [
+    "setuptools",
+    "wheel",
+    "setuptools-scm",
+]
+
+[project]
+name = "adafruit-blinka-displayio"
+description = "displayio for Blinka"
+version = "0.0.0+auto.0"
+readme = "README.rst"
+authors = [
+    {name = "Adafruit Industries", email = "circuitpython@adafruit.com"}
+]
+urls = {Homepage = "https://github.com/adafruit/Adafruit_CircuitPython_SI1145.git"}
+keywords = [
+    "adafruit",
+    "blinka",
+    "circuitpython",
+    "micropython",
+    "displayio",
+    "lcd",
+    "tft",
+    "display",
+    "pitft",
+]
+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"]
+
+[tool.setuptools]
+py-modules = ["fontio", "terminalio", "paralleldisplay"]
+packages = ["displayio"]
+
+[tool.setuptools.dynamic]
+dependencies = {file = ["requirements.txt"]}