-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.05 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ESPythoNOW"
version = "0.0.1"
description = "A Python library for sending, receiving, and monitoring ESP-NOW messages on Linux"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [
{name = "ChuckMash"}
]
keywords = ["espnow", "esp-now", "esp8266", "esp32", "iot", "wireless", "networking", "linux", "python"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
"Topic :: Communications",
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/ChuckMash/ESPythoNOW"
Repository = "https://github.com/ChuckMash/ESPythoNOW"
Issues = "https://github.com/ChuckMash/ESPythoNOW/issues"
[project.scripts]
espythonow = "ESPythoNOW:main"
[tool.setuptools]
py-modules = ["ESPythoNOW"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}