You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.0 KiB

  1. # SPDX-FileCopyrightText: 2022 Alec Delaney for Adafruit Industries
  2. #
  3. # SPDX-License-Identifier: MIT
  4. [build-system]
  5. requires = [
  6. "setuptools",
  7. "wheel",
  8. "setuptools-scm",
  9. ]
  10. [project]
  11. name = "Adafruit-PlatformDetect"
  12. description = "Platform detection for use by libraries like Adafruit-Blinka."
  13. version = "0.0.0+auto.0"
  14. readme = "README.rst"
  15. authors = [
  16. {name = "Adafruit Industries", email = "circuitpython@adafruit.com"}
  17. ]
  18. urls = {Homepage = "https://github.com/adafruit/Adafruit_Python_PlatformDetect"}
  19. license = {text = "MIT"}
  20. classifiers=[
  21. "Development Status :: 5 - Production/Stable",
  22. "Intended Audience :: Developers",
  23. "Topic :: Software Development :: Libraries",
  24. "Topic :: System :: Hardware",
  25. "License :: OSI Approved :: MIT License",
  26. "Programming Language :: Python :: 3",
  27. "Programming Language :: Python :: 3.7",
  28. ]
  29. dynamic = ["dependencies"]
  30. [tool.setuptools]
  31. packages = ["adafruit_platformdetect", "adafruit_platformdetect.constants"]
  32. [tool.setuptools.dynamic]
  33. dependencies = {file = ["requirements.txt"]}