/ pyproject.toml
pyproject.toml
1 [build-system] 2 requires = [ 3 "setuptools", 4 "wheel", 5 "setuptools-scm", 6 ] 7 8 [project] 9 name = "circuitpython-at24mac-eeprom" 10 description = "A CircuitPython library to interface with AT24MAC402 and AT24MAC602 devices." 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_AT24MAC_EEPROM"} 17 keywords = [ 18 "adafruit", 19 "circuitpython", 20 "micropython", 21 "eeprom", 22 "at24mac", 23 "at24mac_eeprom" 24 ] 25 license = {text = "MIT"} 26 classifiers = [ 27 "Intended Audience :: Developers", 28 "Topic :: Software Development :: Libraries", 29 "Topic :: Software Development :: Embedded Systems", 30 "Topic :: System :: Hardware", 31 "License :: OSI Approved :: MIT License", 32 "Programming Language :: Python :: 3", 33 ] 34 35 [tool.setuptools] 36 # TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER, 37 # CHANGE `py_modules = ['...']` TO `packages = ['...']` 38 py-modules = ["at24mac_eeprom"]