- Create Economist SubmissionTracking package correctly: * mainArticle = full blog post content * coverLetter = 216-word SIR— letter * Links to blog post via blogPostId - Archive 'Letter to The Economist' from blog posts (it's the cover letter) - Fix date display on article cards (use published_at) - Target publication already displaying via blue badge Database changes: - Make blogPostId optional in SubmissionTracking model - Economist package ID: 68fa85ae49d4900e7f2ecd83 - Le Monde package ID: 68fa2abd2e6acd5691932150 Next: Enhanced modal with tabs, validation, export 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
993 B
Text
28 lines
993 B
Text
Metadata-Version: 2.1
|
|
Name: pycparser
|
|
Version: 2.23
|
|
Summary: C parser in Python
|
|
Home-page: https://github.com/eliben/pycparser
|
|
Author: Eli Bendersky
|
|
Author-email: eliben@gmail.com
|
|
Maintainer: Eli Bendersky
|
|
License: BSD-3-Clause
|
|
Platform: Cross Platform
|
|
Classifier: Development Status :: 5 - Production/Stable
|
|
Classifier: License :: OSI Approved :: BSD License
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.8
|
|
Classifier: Programming Language :: Python :: 3.9
|
|
Classifier: Programming Language :: Python :: 3.10
|
|
Classifier: Programming Language :: Python :: 3.11
|
|
Classifier: Programming Language :: Python :: 3.12
|
|
Classifier: Programming Language :: Python :: 3.13
|
|
Requires-Python: >=3.8
|
|
License-File: LICENSE
|
|
|
|
|
|
pycparser is a complete parser of the C language, written in
|
|
pure Python using the PLY parsing library.
|
|
It parses C code into an AST and can serve as a front-end for
|
|
C compilers or analysis tools.
|
|
|