-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
44 lines (41 loc) · 1.02 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
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flipperzero"
version = "1.6.0"
authors = [
{ name = "Oliver Fabel" },
]
description = "Python support for Flipper Zero."
readme = "flipperzero/README.md"
license = "MIT"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: Implementation :: MicroPython",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: Other OS",
]
keywords = [
"flipperzero",
"Flipper Zero",
"MicroPython",
"f0",
"GPIO",
"PWM",
"ADC",
"Infrared"
]
[project.urls]
"Documentation" = "https://ofabel.github.io/mp-flipper/"
"Source code" = "https://github.com/ofabel/mp-flipper"
"Issue Tracker" = "https://github.com/ofabel/mp-flipper/issues"
"Changelog" = "https://github.com/ofabel/mp-flipper/blob/master/CHANGELOG.md"
[tool.hatch.build]
directory = "dist/python"
include = [
"flipperzero/__init__.py"
]
ignore-vcs = true
only-packages = true