From 4d9387a641448f7f2a089ed4c1e9143ffca1596a Mon Sep 17 00:00:00 2001 From: tadeubas Date: Wed, 14 May 2025 23:31:50 -0300 Subject: [PATCH] Version 1.0.0 for PyPI --- .gitignore | 4 +++- README.md | 2 +- pyproject.toml | 13 ++++++++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2faa9b4..801af61 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ # Packages ############ +dist/ # Logs and Databases ###################### @@ -47,4 +48,5 @@ genrst/ ###################### .DS_Store -*.egg-info \ No newline at end of file +*.egg-info +.venv \ No newline at end of file diff --git a/README.md b/README.md index 38fd826..7c424c7 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ # urtypes -Python implementation of the [Blockchain Commons UR Types specification](https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-006-urtypes.md) \ No newline at end of file +Python implementation of the [Blockchain Commons UR Types specification](https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-006-urtypes.md). diff --git a/pyproject.toml b/pyproject.toml index f7dd818..c498484 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,9 +22,20 @@ [tool.poetry] name = "urtypes" -version = "0.1.0" +version = "1.0.0" description = "Python implementation of the Blockchain Commons UR Types specification" authors = ["Jeff S "] +readme = "README.md" +license = "MIT" +classifiers = [ + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", +] + +[tool.poetry.urls] +repository = "https://github.com/selfcustody/urtypes" +"Bug Tracker" = "https://github.com/selfcustody/urtypes/issues" [tool.poetry.dependencies] python = "^3.12.3"