diff --git a/CHANGELOG.md b/CHANGELOG.md index 497478a..824a541 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. ## [0.4.0] - 2022-04-06 ### Changed +- Fixed pyproject.toml to be used with recent pip install versions - Updated Windows binaries for Oxygen 6.1 compatibility (no change in the python library) ## [0.3.0] - 2021-12-13 diff --git a/pyproject.toml b/pyproject.toml index 546110f..577e4de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,6 @@ -[build-system] -requires = [ - "wheel", - "setuptools", - "numpy>=1.21.0", - "pandas>=1.3.0", -] - [project] -id = "com.deweton.pydmdreader" name = "pyDmdReader" +description = "Python module to read Dewetron Oxygen DMD files" version = "0.4.0" license = {file = "LICENSE"} @@ -36,7 +28,6 @@ classifiers = [ "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", ] -dynamic = ['version', 'description'] [project.urls] homepage = "https://www.dewetron.com/" @@ -44,3 +35,11 @@ documentation = "https://github.com/DEWETRON/pyDmdReader/wiki" source = "https://github.com/DEWETRON/pyDmdReader" download = "https://github.com/DEWETRON/pyDmdReader/releases" tracker = "https://github.com/DEWETRON/pyDmdReader/issues" + +[build-system] +requires = [ + "wheel", + "setuptools", + "numpy>=1.21.0", + "pandas>=1.3.0", +]