-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (44 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
[project]
name = "stingray-reader"
version = "5.1.1"
description = "The Stingray Schema-Based File Reader"
readme = "README.rst"
authors = [
{name = "S.Lott", email = "[email protected]"},
]
license = {file = "LICENSE"}
requires-python = ">=3.12"
dependencies = [
"jsonschema>=4.23.0",
"numbers-parser>=4.13.2",
"openpyxl>=3.1.5",
"pyexcel[ods]>=0.7.0",
"xlrd>=2.0.1",
]
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://slott56.github.io/Stingray-Reader/build/html/index.html"
GitHub = "https://github.com/slott56/Stingray-Reader"
[tool.uv]
dev-dependencies = [
"tox>=4.21.2",
"tox-uv>=1.13.0",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"sphinx>=8.1.0",
"sphinxcontrib-plantuml>=0.30",
"pyright>=1.1.384",
"ruff>=0.6.9",
"pygments>=2.18.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/stingray"]