Index: pyproject.toml
===================================================================
--- pyproject.toml	(revision d6e75be17bbd83e4a95dcabd999d3cefa40bc8db)
+++ pyproject.toml	(revision 003687772fd8ee925bb5c8814c08653795d7e8a6)
@@ -4,16 +4,37 @@
 
 [tool.poetry]
-name = "flexo"
+name = "flexoentity"
 version = "0.0.1"
+description = "Core entity and ID framework for the Flex-O ecosystem."
 authors = ["Enrico Enno Schwass <ennoausberlin@mac.com>"]
-description = "Core library providing unique lifecycle-aware IDs and entity base classes"
+license = "MIT"
 readme = "README.md"
-license = "MIT"
+homepage = "https://example.com/flexoentity"
+repository = "https://example.com/flexoentity.git"
+documentation = "https://example.com/flexoentity/docs"
+keywords = ["flex-o", "entity", "id", "versioning", "hashing", "reproducibility"]
+classifiers = [
+    "Development Status :: 5 - Production/Stable",
+    "Programming Language :: Python :: 3",
+    "License :: OSI Approved :: MIT License",
+    "Operating System :: OS Independent"
+]
+
+packages = [
+    { include = "flexoentity" }
+]
 
 include = [
-	{path = 'tests/*.py'},
-] 
+    { path = "tests/*.py" }
+]
 
 [tool.poetry.dependencies]
-python  = "^3.10.6"
-pytest  = "^7.1.3"
+python = "^3.10.6"
+
+[tool.poetry.group.dev.dependencies]
+pytest = "^7.1.3"
+
+[tool.poetry.urls]
+Homepage = "https://example.com/flexoentity"
+Repository = "https://example.com/flexoentity.git"
+Issues = "https://example.com/flexoentity/issues"
