forked from kahiroka/microbot
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 736 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 736 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77.0"]
[project]
name = "PyMicroBot"
version = "0.0.23"
license = "MIT"
description = "A library to communicate with MicroBot"
authors = [{ name = "spycle" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"bleak>=0.19.0",
"bleak-retry-connector>=1.4.0",
]
[project.urls]
Source = "https://github.com/spycle/pyMicroBot/"
[tool.setuptools.packages.find]
include = ["microbot*"]