Skip to content

Support poetry-core 2.0 changes #553

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
[tool.poetry]
[project]
name = "dataclasses-json"
version = "0.0.0"
description = "Easily serialize dataclasses to and from JSON."
authors = ["Charles Li <[email protected]>"]
maintainers = ['Charles Li <[email protected]>', 'Georgiy Zubrienko <[email protected]>', 'Vitaliy Savitskiy <[email protected]>', 'Matthias Als <[email protected]>']
authors = [
{ "name" = "Charles Li", "email" = "[email protected]" },
]
maintainers = [
{ "name" = "Charles Li", "email" = "[email protected]" },
{ "name" = "Georgiy Zubrienko", "email" = "[email protected]" },
{ "name" = "Vitaliy Savitskiy", "email" = "[email protected]" },
{ "name" = "Matthias Als", "email" = "[email protected]>" },
]
license = 'MIT'
readme = "README.md"
repository = 'https://github.com/lidatong/dataclasses-json'
Expand Down Expand Up @@ -33,7 +40,7 @@ build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true

[tool.poetry.urls]
[project.urls]
changelog = "https://github.com/lidatong/dataclasses-json/releases"
documentation = "https://lidatong.github.io/dataclasses-json/"
issues = "https://github.com/lidatong/dataclasses-json/issues"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also had to change this to Documentation =.

Comment on lines +43 to 45

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also missing Repository in this section as well

Loading