Skip to content

Commit

Permalink
bumped version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fccoelho committed Nov 29, 2024
1 parent c388e3c commit a6f0c30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies = [
"setuptools>=75.6.0",
]
name = "pyreaddbc"
version = "1.1.0"
version = "1.2.0"
description = "pyreaddbc package"
readme = "README.md"
classifiers = [
Expand All @@ -28,18 +28,12 @@ classifiers = [
"Programming Language :: Python :: 3.11",
]

#include = [
# {path = "pyreaddbc/_readdbc.so"}
#]
[tool.setuptools]
py-modules = ["pyreaddbc"]
ext-modules = [
{name = "pyreaddbc._readdbc", sources = ["pyreaddbc/_readdbc.c"], include-dirs = ["pyreaddbc"], libraries = ["readdbc"], library-dirs = ["pyreaddbc"]},
{name = "pyreaddbc._readdbc", sources = ["pyreaddbc/_readdbc.c"], include-dirs = ["pyreaddbc"]}#, libraries = ["readdbc"], library-dirs = ["pyreaddbc"]},
]

[tool.setuptools.cmdclass]
build_py = "pyreaddbc._build_readdbc"

[build-system]
requires = ["setuptools>=61", "cffi"]
build-backend = "setuptools.build_meta"
Expand Down
2 changes: 1 addition & 1 deletion pyreaddbc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""pyreaddbc Python package"""
from importlib import metadata as importlib_metadata
import _build_readdbc
# import ._build_readdbc
from .readdbc import * # noqa F403


Expand Down

0 comments on commit a6f0c30

Please sign in to comment.