-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (37 loc) · 950 Bytes
/
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
45
46
47
[project]
name = "host-app"
description = "WasmIoT Supervisor PoC in python 3"
license = {text = "MIT"}
authors = [
{ name="University of Jyväskylä" },
# { name="Name", email="[email protected]" }
]
requires-python = ">=3.11"
dynamic = ["dependencies", "version"]
[project.urls]
repository = "https://github.com/LiquidAI-project/wasmiot-supervisor"
[project.optional-dependencies]
dev = [
"bump-my-version",
"rich", "flask-rich" # For better logging
]
[tool.setuptools]
packages = ["host_app"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "host_app.__version__"}
[tool.bumpversion]
current_version = "0.1.1"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "host_app/_version.py"
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
"missing-timeout",
]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"