diff --git a/pyproject.toml b/pyproject.toml index 5f6c89e..0827f59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] \ No newline at end of file +python = ["37", "38", "39", "310", "311"]