Skip to content

Commit

Permalink
fix pyproject.toml issues
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasstraka committed Apr 6, 2022
1 parent 1129354 commit 5134605
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
19 changes: 9 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"}

Expand Down Expand Up @@ -36,11 +28,18 @@ classifiers = [
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
dynamic = ['version', 'description']

[project.urls]
homepage = "https://www.dewetron.com/"
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",
]

0 comments on commit 5134605

Please sign in to comment.