-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "note-python"
dynamic = ["version"]
description = "Cross-platform Python Library for the Blues Wireless Notecard"
authors = [
{name = "Blues Inc.", email = "support@blues.com"},
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
]
dependencies = [
"filelock>=3.24.3",
]
[project.urls]
Homepage = "https://github.com/blues/note-python"
Repository = "https://github.com/blues/note-python"
[tool.setuptools]
packages = ["notecard"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
addopts = "--ignore=test/hitl/"