-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 933 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 933 Bytes
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
[project]
name = "cros_ec_python"
version = "0.3.0"
authors = [
{ name="Steve-Tech" }
]
description = "A Python library for interacting with a Chrome OS EC."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Topic :: System :: Hardware",
"Topic :: Software Development :: Libraries",
]
license = "GPL-2.0-or-later"
[project.optional-dependencies]
docs = ["pdoc", "portio"]
lpc = ["portio; sys_platform=='linux'", "wmi; sys_platform=='win32'"]
[project.urls]
Documentation = "https://steve-tech.github.io/CrOS_EC_Python/"
Repository = "https://github.com/Steve-Tech/CrOS_EC_Python"
Issues = "https://github.com/Steve-Tech/CrOS_EC_Python/issues"