feat: implement EVE Forum Moderator CLI tool
- Add structured forum rules from EVE moderation policy - Implement cookie-based Discourse authentication - Add async Discourse API client with rate limiting - Implement Claude-powered rule violation analyzer - Add rich terminal and Discourse-compatible markdown reports - Create Click CLI with review and rules commands
This commit is contained in:
24
pyproject.toml
Normal file
24
pyproject.toml
Normal file
@@ -0,0 +1,24 @@
|
||||
[project]
|
||||
name = "eve-forum-moderator"
|
||||
version = "0.1.0"
|
||||
description = "AI-assisted EVE Online forum moderation tool - analyzes user posting history for rule violations"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"httpx>=0.27",
|
||||
"click>=8.1",
|
||||
"rich>=13.0",
|
||||
"anthropic>=0.30",
|
||||
"python-dateutil>=2.9",
|
||||
"python-dotenv>=1.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
eve-mod = "eve_mod.cli:cli"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/eve_mod"]
|
||||
Reference in New Issue
Block a user