1+ [build-system ]
2+ requires = [" hatchling" , " hatch-vcs" ]
3+ build-backend = " hatchling.build"
4+
15[project ]
26name = " pyxdf"
3- description = " Python library for importing XDF (Extensible Data Format)"
7+ dynamic = [" version" ]
8+ description = " Python package for importing XDF (Extensible Data Format) files"
9+ license = " BSD-2-Clause"
10+ license-files = [" LICENSE" ]
411authors = [
512 {
name =
" Christian Kothe" ,
email =
" [email protected] " },
613 {
name =
" Chadwick Boulay" ,
email =
" [email protected] " },
714 {
name =
" Clemens Brunner" ,
email =
" [email protected] " }
815]
9- license = " BSD-3-Clause"
10- license-files = [" LICENSE" ]
1116readme = " README.md"
12- requires-python = " >=3.9"
13- dynamic = [" version" ]
14- keywords = [
15- " XDF" ,
16- " pyxdf" ,
17- " LSL" ,
18- " Lab Streaming Layer" ,
19- " file format" ,
20- " biosignals" ,
21- " stream" ,
22- ]
17+ requires-python = " >=3.10"
2318classifiers = [
2419 " Development Status :: 4 - Beta" ,
2520 " Intended Audience :: Developers" ,
@@ -29,36 +24,41 @@ classifiers = [
2924 " Operating System :: POSIX :: Linux" ,
3025 " Operating System :: MacOS" ,
3126 " Programming Language :: Python :: 3" ,
32- " Programming Language :: Python :: 3.9" ,
3327 " Programming Language :: Python :: 3.10" ,
3428 " Programming Language :: Python :: 3.11" ,
3529 " Programming Language :: Python :: 3.12" ,
3630 " Programming Language :: Python :: 3.13" ,
31+ " Programming Language :: Python :: 3.14" ,
32+ ]
33+ keywords = [
34+ " XDF" ,
35+ " pyxdf" ,
36+ " LSL" ,
37+ " Lab Streaming Layer" ,
38+ " file format" ,
39+ " biosignals" ,
40+ " stream" ,
3741]
3842dependencies = [
3943 " numpy>=2.0.2" ,
4044]
4145
42- [project .urls ]
43- Repository = " https://github.com/xdf-modules/pyxdf"
44- Issues = " https://github.com/xdf-modules/pyxdf/issues"
45- Changelog = " https://github.com/xdf-modules/pyxdf/blob/main/CHANGELOG.md"
46-
4746[project .optional-dependencies ]
4847playback = [
4948 " pylsl>=1.17.6" ,
5049]
5150
51+ [project .urls ]
52+ Repository = " https://github.com/xdf-modules/pyxdf"
53+ Issues = " https://github.com/xdf-modules/pyxdf/issues"
54+ Changelog = " https://github.com/xdf-modules/pyxdf/blob/main/CHANGELOG.md"
55+
5256[dependency-groups ]
5357dev = [
5458 " pytest>=8.3.4" ,
5559 " ruff>=0.8.2" ,
5660]
5761
58- [build-system ]
59- requires = [" hatchling" , " hatch-vcs" ]
60- build-backend = " hatchling.build"
61-
6262[tool .hatch .version ]
6363source = " vcs"
6464
0 commit comments