Skip to content

Commit

Permalink
Fix urls and add pkg metadata (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval authored Feb 20, 2023
1 parent 9c377d9 commit 344ca9c
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,37 @@ build-backend = "maturin"
name = "y-py"
version = "0.5.8"
description = "Python bindings for the Y-CRDT built from yrs (Rust)"
license = { file = "LICENSE" }
authors = [
{ name = "John Waidhofer", email = "waidhoferj@gmail.com" },
{ name = "Kevin Jahns", email = "kevin.jahns@protonmail.com" },
{ name = "Pierre-Olivier Simonard", email = "pierre.olivier.simonard@gmail.com" }
]
readme = "README.md"
homepage = "https://github.com/y-crdt/ypy"
repository = "https://github.com/y-crdt/ypy"
keywords = [
"crdt",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Rust",
]

[project.urls]
Homepage = "https://github.com/y-crdt/ypy"
Source = "https://github.com/y-crdt/ypy"
Issues = "https://github.com/y-crdt/ypy/issues"
Pypi = "https://pypi.org/project/y-py"

[tool.hatch.envs.test]
dependencies = ["pytest", "maturin"]

[[tool.hatch.envs.test.matrix]]
python = ["37", "38", "39", "310", "311"]
python = ["37", "38", "39", "310", "311"]

0 comments on commit 344ca9c

Please sign in to comment.