-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.12 KB
/
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
41
42
[tool.poetry]
name = "piconetcontrol"
version = "0.3.0"
description = "Client-server package to remotely control a Raspberrypi Pi Pico W."
authors = ["Matthias Zeller <matthias.gilles.zeller@gmail.com>"]
license = "MIT"
readme = "README.md"
classifiers= [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware",
"Topic :: System :: Networking",
]
[project.urls]
Homepage = "https://github.com/matthiaszeller/piconetcontrol"
repository = "https://github.com/matthiaszeller/piconetcontrol"
[tool.poetry.dependencies]
python = "^3.11"
pyudev = "^0.24.3"
colorama = "^0.4.6"
beautifulsoup4 = "^4.12.3"
simple-term-menu = "^1.6.6"
mpremote = "^1.24.1"
polling2 = "^0.5.0"
[tool.poetry.group.dev.dependencies]
bumpversion2 = "^1.4.3"
twine = "^6.0.1"
pre-commit = "^4.0.1"
[tool.poetry.scripts]
piconetcontrol = "piconetcontrol.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"