Skip to content

Commit 2752e35

Browse files
authored
Merge pull request #3 from fronzbot/dev
Fix importing issue
2 parents a3f5533 + 816cd72 commit 2752e35

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ __pycache__
22
.tox
33
python_adc_eval.egg-info
44
dist
5+
.ruff_cache

adc_eval/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
"""Initialization file for module."""
2+
3+
from . import spectrum
4+
from . import converters
5+
from . import signals

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "python-adc-eval"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
license = {text = "MIT"}
99
description = "ADC Evaluation Library"
1010
readme = "README.rst"
@@ -79,7 +79,9 @@ ignore = [
7979
# Ignored due to performance: https://github.com/charliermarsh/ruff/issues/2923
8080
"UP038", # Use `X | Y` in `isinstance` call instead of `(X, Y)`
8181
]
82-
82+
exclude = [
83+
"__init__.py",
84+
]
8385
line-length = 88
8486

8587
target-version = "py39"

0 commit comments

Comments
 (0)