summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2021-10-03 10:20:41 -0300
committerSoniEx2 <endermoneymod@gmail.com>2021-10-03 10:20:41 -0300
commitcf75aea58f85339d4e039a1b0e7a0e7770cd8dc0 (patch)
tree7605268b4ae873fa0dafcd7e1ed7c4a99c4c4056
parent996ab435341f148cf2c246fe800f86b8cd416506 (diff)
Prepare for publishing
-rw-r--r--README.md13
-rw-r--r--pyproject.toml6
2 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e936e48
--- /dev/null
+++ b/README.md
@@ -0,0 +1,13 @@
+Antichecked Exceptions
+======================
+
+Antichecked Exceptions are an alternative to checked exceptions. They're
+designed to actively catch bugs, and to prevent silencing exceptions for
+the sake of satisfying the compiler (as usually happens with checked
+exceptions).
+
+Rather than requiring the caller to catch some exceptions, Antichecked
+Exceptions intercepts some raised exceptions, and helps guarantee to the
+caller, if the caller opts to catch some exception, that the exception
+was actually raised by a deliberate design decision rather than a typo
+or bug.
diff --git a/pyproject.toml b/pyproject.toml
index 38d1136..16d39f8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,3 +6,9 @@ build-backend = "flit_core.buildapi"
name = "antichecked"
authors = [{name = "SoniEx2", email = "endermoneymod@gmail.com"}]
dynamic = ["version", "description"]
+license = {file = "LICENSE"}
+readme = "README.md"
+
+[project.urls]
+Homepage = "https://ganarchy.autistic.space/project/996ab435341f148cf2c246fe800f86b8cd416506"
+Repository = "https://soniex2.autistic.space/git-repos/antichecked.git"