init
This commit is contained in:
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
# Python-generated files
|
||||
__pycache__/
|
||||
*.py[oc]
|
||||
build/
|
||||
dist/
|
||||
wheels/
|
||||
*.egg-info
|
||||
|
||||
# Virtual environments
|
||||
.venv
|
1
.python-version
Normal file
1
.python-version
Normal file
@@ -0,0 +1 @@
|
||||
3.12.11
|
17
pyproject.toml
Normal file
17
pyproject.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
[project]
|
||||
name = "evil-blocker"
|
||||
version = "0.1.0"
|
||||
description = "protect your personal server from abusive activity"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
{ name = "ZhuangYumin", email = "zymx@pm.me" }
|
||||
]
|
||||
requires-python = ">=3.12.11"
|
||||
dependencies = []
|
||||
|
||||
[project.scripts]
|
||||
evil-blocker = "evil_blocker:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["uv_build>=0.8.15,<0.9.0"]
|
||||
build-backend = "uv_build"
|
2
src/evil_blocker/__init__.py
Normal file
2
src/evil_blocker/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def main() -> None:
|
||||
print("Hello from evil-blocker!")
|
Reference in New Issue
Block a user