🛡️ chore: initial project setup

This commit is contained in:
tayf 2026-03-08 07:12:40 +02:00
commit 1bd60847e8
6 changed files with 28 additions and 0 deletions

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv

1
.python-version Normal file
View file

@ -0,0 +1 @@
3.12

0
README.md Normal file
View file

15
pyproject.toml Normal file
View file

@ -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"

2
src/wiqaya/__init__.py Normal file
View file

@ -0,0 +1,2 @@
def hello() -> str:
return "Hello from wiqaya!"

0
src/wiqaya/py.typed Normal file
View file