Skip to content

Commit

Permalink
Fix package build issue
Browse files Browse the repository at this point in the history
fixes #14
  • Loading branch information
tammoippen committed Dec 20, 2024
1 parent 56fd021 commit fca7ad6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]

name = "iso4217parse"
version = "0.6.0"
version = "0.6.1"
description = "Parse currencies (symbols and codes) from and to ISO4217."
authors = ["Tammo Ippen <tammo.ippen@posteo.de>"]
license = "MIT"
Expand Down Expand Up @@ -39,3 +39,7 @@ mypy = "*"
pytest = "*"
pytest-cov = "*"
ruff = "*"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
12 changes: 1 addition & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
[flake8]
application_import_names = iso4217parse
max-line-length = 159
max-complexity = 10
import-order-style = google
exclude =
.venv/
venv/
gen_data.py

[tool:pytest]
ignore = gen_data.py
addopts = --cov=iso4217parse --cov-branch --cov-report term-missing --cov-report html:cov_html --cov-report=xml:coverage.xml -v
addopts = --cov=iso4217parse --cov-branch --cov-report term-missing --cov-report html:cov_html --cov-report=xml:coverage.xml

[bdist_wheel]
universal = 1
Expand Down

0 comments on commit fca7ad6

Please sign in to comment.