/ pyproject.toml
pyproject.toml
 1  [build-system]
 2  requires = [
 3      "setuptools",
 4      "wheel",
 5      "setuptools-scm",
 6  ]
 7  
 8  [project]
 9  name = "circuitpython-p1am-200-helpers"
10  description = "A CircuitPython helper library to interface with the P1AM-200 CPU."
11  version = "0.0.0+auto.0"
12  readme = "README.md"
13  authors = [
14      {name = "Adam Cummick", email = "adamc@facts-eng.com"}
15  ]
16  urls = {Homepage = "https://github.com/facts-engineering/CircuitPython_p1am_200_helpers.git"}
17  keywords = [
18      "adafruit",
19      "circuitpython",
20      "micropython",
21      "p1am",
22      "p1am200"
23  ]
24  license = {text = "MIT"}
25  classifiers = [
26      "Intended Audience :: Developers",
27      "Topic :: Software Development :: Libraries",
28      "Topic :: Software Development :: Embedded Systems",
29      "Topic :: System :: Hardware",
30      "License :: OSI Approved :: MIT License",
31      "Programming Language :: Python :: 3",
32  ]
33  
34  [tool.setuptools]
35  # TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
36  #       CHANGE `py_modules = ['...']` TO `packages = ['...']`
37  py-modules = ["p1am_200_helpers"]