Skip to content

Commit

Permalink
fix: Updated build process and version
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesErnst committed Mar 7, 2024
1 parent 198bdc7 commit ccf704e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "jsonconversion"
version = "1.0.0"
version = "1.0.1"
description = "This python module helps converting arbitrary Python objects into JSON strings and back."
keywords = ["json", "conversion", "serialization"]
readme = "README.rst"
Expand All @@ -27,9 +27,19 @@ classifiers = [
]
dependencies = [
"pytest-runner>=6.0.0",
"numpy<2.0.0,>=1.22.4",
"pytest>=6.0.0,<7.0.0",
]
license = {text = "BSD"}
requires-python = ">=3.7"

[project.urls]
Homepage = "https://github.com/DLR-RM/python-jsonconversion"
Homepage = "https://github.com/DLR-RM/python-jsonconversion"

[tool.pdm.build]
package-dir = "source"
includes = ["source/jsonconversion"]

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"

0 comments on commit ccf704e

Please sign in to comment.