-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
64 lines (54 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "freenove-esp32"
version = "0.1.0"
description = "Freenove Ultimate Starter Kit for ESP32 scripts"
authors = ["Iaroslav Russkykh <me@elruso.im>"]
license = "MIT"
repository = "https://github.com/cachuperia/freenove-esp32"
documentation = "https://github.com/cachuperia/freenove-esp32"
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Typing :: Typed",
# PyPI will always reject packages with classifiers beginning with "Private ::"
"Private :: Do Not Upload",
]
[tool.poetry.dependencies]
python = "^3.10, <4.0"
loguru = "*"
typer = "*"
esptool = "^4.3"
pyserial = "^3.5"
mpremote = "^0.4.0"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-cov = "*"
pytest-dotenv = "*"
mypy = "*" # check https://github.com/python/typeshed/tree/master/stubs for stubs
detect-secrets = "~1.4.0"
[tool.poetry.extras]
[tool.poetry.scripts]
freenove-esp32 = "freenove_esp32:cli.cli"
[tool.black]
line-length = 100
target-version = ['py311']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"pyproject.toml:version"
]
version_pattern = [
"Makefile:^VERSION := {version}"
]
upload_to_pypi = false
upload_to_release = false
commit_subject = "chore(release): {version} [skip actions]"