New features: - 12 interactive visualizations (ietf viz): t-SNE landscape, similarity heatmap, score distributions, timeline, bubble explorer, radar charts, author network graph, category treemap, quality vs overlap, org bar chart, ideas chart, and interactive draft browser - Interactive draft browser (browser.html): filterable by category, keyword, score sliders with sortable table and expandable detail rows - arXiv paper (paper/main.tex): 13-page manuscript with all findings - Gap analysis: 12 identified under-addressed areas - Author network: collaboration graph, org contributions, cross-org analysis - Draft generation from gaps (ietf draft-gen) - Auto-load .env for API keys (python-dotenv) New modules: visualize.py, authors.py, draftgen.py New reports: timeline, overlap-matrix, authors, gaps New deps: plotly, matplotlib, seaborn, scipy, scikit-learn, networkx, python-dotenv Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
644 B
TOML
31 lines
644 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ietf-draft-analyzer"
|
|
version = "0.1.0"
|
|
description = "Track, categorize, and rate AI/agent-related IETF Internet-Drafts"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"click>=8.0",
|
|
"httpx>=0.27",
|
|
"anthropic>=0.40",
|
|
"ollama>=0.4",
|
|
"rich>=13.0",
|
|
"numpy>=1.26",
|
|
"python-dotenv>=1.0",
|
|
"plotly>=5.18",
|
|
"matplotlib>=3.8",
|
|
"seaborn>=0.13",
|
|
"scipy>=1.11",
|
|
"scikit-learn>=1.3",
|
|
"networkx>=3.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
ietf = "ietf_analyzer.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|