commit 1bd60847e8a4ca6aa1341ef6c91ae3a3c50d9b2f Author: tayf Date: Sun Mar 8 07:12:40 2026 +0200 🛡️ chore: initial project setup diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f761da2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[project] +name = "wiqaya" +version = "0.1.0" +description = "A Python library for multilingual profanity detection and filtering. It identifies and censors offensive or abusive words across multiple languages." +readme = "README.md" +license = {text = "MIT"} +authors = [ + {name = "tayf", email = "tayf@tuta.io"}, +] +requires-python = ">=3.12" +dependencies = [] + +[build-system] +requires = ["uv_build>=0.10.9,<0.11.0"] +build-backend = "uv_build" diff --git a/src/wiqaya/__init__.py b/src/wiqaya/__init__.py new file mode 100644 index 0000000..efeab83 --- /dev/null +++ b/src/wiqaya/__init__.py @@ -0,0 +1,2 @@ +def hello() -> str: + return "Hello from wiqaya!" diff --git a/src/wiqaya/py.typed b/src/wiqaya/py.typed new file mode 100644 index 0000000..e69de29