|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools"] |
| 3 | + |
| 4 | +[project] |
| 5 | +name = "sparkfun_qwiic_serlcd" |
| 6 | +version = "0.0.2" |
| 7 | +description = "SparkFun Electronics Qwiic SerLCD" |
| 8 | +readme = "DESCRIPTION.rst" |
| 9 | + |
| 10 | +authors = [{ name= "Sparkfun Electronics", email= "[email protected]"}] |
| 11 | +dependencies = ["sparkfun_qwiic_i2c"] |
| 12 | + |
| 13 | +classifiers=[ |
| 14 | + # How mature is this project? Common values are |
| 15 | + # 3 - Alpha |
| 16 | + # 4 - Beta |
| 17 | + # 5 - Production/Stable |
| 18 | + "Development Status :: 5 - Production/Stable", |
| 19 | + |
| 20 | + # Indicate who your project is intended for |
| 21 | + "Intended Audience :: Developers", |
| 22 | + "Topic :: Software Development :: Build Tools", |
| 23 | + |
| 24 | + # Pick your license as you wish (should match "license" above) |
| 25 | + "License :: OSI Approved :: MIT License", |
| 26 | + |
| 27 | + # Specify the Python versions you support here. In particular, ensure |
| 28 | + # that you indicate whether you support Python 2, Python 3 or both. |
| 29 | + "Programming Language :: Python :: 3.5", |
| 30 | + "Programming Language :: Python :: 3.6", |
| 31 | + "Programming Language :: Python :: 3.7", |
| 32 | + "Programming Language :: Python :: 3.8", |
| 33 | + "Programming Language :: Python :: 3.9", |
| 34 | + "Programming Language :: Python :: 3.10", |
| 35 | + "Programming Language :: Python :: 3.11", |
| 36 | + "Programming Language :: Python :: 3.12", |
| 37 | + "Programming Language :: Python :: 3.13", |
| 38 | + "Programming Language :: Python :: 3.14", |
| 39 | + "Programming Language :: Python :: Implementation :: MicroPython", |
| 40 | + # NOTE: CircuitPython is also supported, but no classifier exists for it |
| 41 | +] |
| 42 | + |
| 43 | +keywords = ["electronics, maker"] |
| 44 | + |
| 45 | +[project.urls] |
| 46 | +homepage = "https://www.sparkfun.com/products/16396" |
| 47 | + |
| 48 | +[tool.setuptools] |
| 49 | +py-modules = ["qwiic_serlcd"] |
0 commit comments