nolo 0.1.1

A CLI tool for discovering and analyzing `TODO` comments across codebases.
Documentation
# Regular Python comment
import os
import sys

# TODO: Add proper logging
def main():
    # Regular comment
    data = {"name": "test", "value": 42}
    
    # FIXME: Remove debug print
    print(f"Data: {data}")
    
    # NOTE: This should be configurable
    config_path = "/etc/myapp/config.yaml"
    
    # HACK: Hardcoded for now
    return data

# BUG: Doesn't validate input
def process_item(item):
    """Process an item."""
    return item.upper()

if __name__ == "__main__":
    main()