Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
requires = ["setuptools>=61.0,<77", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "labchart_parser"
version = "0.2.0"
description = "Parser for ADInstruments LabChart text exports"
readme = "README.md"
license = { file = "LICENSE" }
license = { text = "MIT" }
authors = [
{name = "Damien Bachasson", email = "damien.bachasson@gmail.com"}
]
Expand All @@ -22,7 +22,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
keywords = ["LabChart", "parser", "ADInstruments", "physiology", "signals"]
Expand Down
1 change: 1 addition & 0 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import pandas as pd
import pytest

from labchart_parser.core import LabChartFile
from labchart_parser.exceptions import InvalidChannelError

Expand Down
1 change: 1 addition & 0 deletions tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import numpy as np
import pandas as pd
import pytest

from labchart_parser.exceptions import FileParsingError
from labchart_parser.parser import parse_labchart_txt

Expand Down
Loading