Skip to content

Commit

Permalink
Merge pull request #3 from fronzbot/dev
Browse files Browse the repository at this point in the history
Fix importing issue
  • Loading branch information
fronzbot authored Jul 14, 2023
2 parents a3f5533 + 816cd72 commit 2752e35
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ __pycache__
.tox
python_adc_eval.egg-info
dist
.ruff_cache
4 changes: 4 additions & 0 deletions adc_eval/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
"""Initialization file for module."""

from . import spectrum
from . import converters
from . import signals
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "python-adc-eval"
version = "0.1.0"
version = "0.1.1"
license = {text = "MIT"}
description = "ADC Evaluation Library"
readme = "README.rst"
Expand Down Expand Up @@ -79,7 +79,9 @@ ignore = [
# Ignored due to performance: https://github.com/charliermarsh/ruff/issues/2923
"UP038", # Use `X | Y` in `isinstance` call instead of `(X, Y)`
]

exclude = [
"__init__.py",
]
line-length = 88

target-version = "py39"
Expand Down

0 comments on commit 2752e35

Please sign in to comment.