43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pypcf8523"
|
|
version = "1.0.0"
|
|
description = "Python 3.14+ driver for the PCF8523 Real Time Clock"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Duncan Tourolle", email = "duncan@tourolle.paris"}
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Topic :: System :: Hardware",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
keywords = ["pcf8523", "rtc", "real-time-clock", "i2c", "raspberry-pi", "hardware"]
|
|
dependencies = [
|
|
"smbus2>=0.4.0",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/adafruit/Adafruit_CircuitPython_PCF8523"
|
|
"Original CircuitPython Library" = "https://github.com/adafruit/Adafruit_CircuitPython_PCF8523"
|
|
|
|
[tool.setuptools]
|
|
packages = ["pypcf8523"]
|
|
package-dir = {"pypcf8523" = "pypcf8523"}
|