/ pyproject.toml
pyproject.toml
 1  [build-system]
 2  requires = [
 3      "setuptools",
 4      "wheel",
 5      "setuptools-scm",
 6  ]
 7  
 8  [project]
 9  name = "circuitpython-p1am"
10  description = "A CircuitPython library to interface with P1000 modules using a P1AM 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"}
17  keywords = [
18      "adafruit",
19      "circuitpython",
20      "micropython",
21      "p1am",
22      "productivity"
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"]