-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "note-python"
version = "1.5.4"
description = "Cross-platform Python Library for the Blues Wireless Notecard"
authors = [
{name = "Blues Inc.", email = "[email protected]"},
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
]
dependencies = [
"filelock==3.0.12",
]
[project.urls]
Homepage = "https://github.com/blues/note-python"
Repository = "https://github.com/blues/note-python"
[tool.setuptools]
packages = ["notecard"]
[tool.pytest.ini_options]
addopts = "--ignore=test/hitl/"