-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (31 loc) · 996 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = "i2c-lcd"
description = "A Python interface to an LCD display module connected via an I2C port expander"
version = "0.2.0"
license = "0BSD"
dependencies = [
"smbus2==0.5.0"
]
keywords = ["LCD", "display", "I2C", "Raspberry Pi", "HD44780", "Hitachi", "PCA8574"]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Hardware :: Hardware Drivers"
]
[project.urls]
documentation = "https://jamesrandom.github.io/i2c-lcd-controller/"
repository = "https://github.com/JamesRandom/i2c-lcd-controller"
[build-system]
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["i2c_lcd"]
[project.optional-dependencies]
dev = ["black", "isort", "build", "twine"]