-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 783 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 783 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
31
32
33
[project]
name = "openseriesnotebook"
version = "1.0.0"
description = "NoteBook examples for the openseries Python package."
authors = [
{ name = "Martin Karrin", email = "martin.karrin@captor.se" },
]
maintainers = [
{ name = "Martin Karrin", email = "martin.karrin@captor.se" },
]
license = "BSD-3-Clause"
license-files = ["LICENSE.md"]
readme = "README.md"
requires-python = ">=3.11,<3.15"
package-mode = false
dependencies = [
"notebook >=7.1.1",
"openseries >=2.1.2"
]
[project.urls]
repository = "https://github.com/karrmagadgeteer2/NoteBook"
[build-system]
requires = ["poetry-core>=2.2.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.9"
[tool.poetry.group.dev.dependencies]
pre-commit = ">=4.5.0"