-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 925 Bytes
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
[build-system]
requires = ["setuptools>=66.1"]
build-backend = "setuptools.build_meta"
[project]
name = "bleakheart"
authors = [
{ name="Fabrizio Smeraldi", email="fabrizio@smeraldi.net" },
]
description = "An asynchronous BLE Heart Monitor library with support for additional data from Polar monitors (ECG, accelerometers, PPG)"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"
]
license= {text="MPL-2.0"}
dynamic = ["dependencies", "version"]
[project.urls]
Homepage="https://github.com/fsmeraldi/bleakheart"
Repository="https://github.com/fsmeraldi/bleakheart.git"
[project.scripts]
#script_name = "module.submodule:function"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version={attr="bleakheart._version.__version__"}