-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.14 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
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[project]
name = "simpledali"
dynamic = ["version"]
authors = [
{name="Philip Crotwell", email = "crotwell@seis.sc.edu"}
]
description = "Datalink protocol in python"
readme = "README.md"
keywords = ["miniseed", "miniseed3", "datalink", "fdsn", "sourceid"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent"
]
requires-python = ">=3.9"
dependencies = [
"simplemseed >= 0.4.0",
"defusedxml",
"pyjwt",
"websockets",
'tomli >= 1.1.0 ; python_version < "3.11"',
'importlib-metadata; python_version<"3.10"',
]
[project.urls]
Homepage = "https://github.com/crotwell/simpledali"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/crotwell/simpledali"
Issues = "https://github.com/crotwell/simpledali/issues"
[project.scripts]
dali2jsonl = "simpledali.dali2jsonl:main"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.hatch.version]
path = "src/simpledali/__init__.py"