Skip to content

Commit

Permalink
Work on updating to pyproject.toml.
Browse files Browse the repository at this point in the history
Building with python -m build now works.
  • Loading branch information
jd-boyd committed Jan 9, 2024
1 parent dc6a0f3 commit 59092b8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,20 @@ requires = [
]
build-backend = "setuptools.build_meta"

[project]
name = "python-lzo"
version = "1.15"
authors = [
{ name="Markus F.X.J. Oberhumer", email="[email protected]" },
{ name="Joshua D. Boyd", email="[email protected]" },

]
description = "Python bindings for the LZO data compression library"
readme = "README.rst"
requires-python = ">=3.7"
#dynamic = ["keywords"]
license = {text = "GPL"}

[project.urls]
"Homepage" = "https://github.com/jd-boyd/python-lzo"
"Bug Tracker" = "https://github.com/jd-boyd/python-lzo/issues"
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,4 @@ def get_kw(**kw): return kw
this very high speed.""",
)

if distutils.__version__ >= "1.0.2":
setup_args["platforms"] = "All"

setup(**setup_args)

0 comments on commit 59092b8

Please sign in to comment.