Metadata-Version: 2.4
Name: pycc-compiler
Version: 1.4.6
Summary: Compile Python to ELF executable
Home-page: https://github.com/yourname/pycc
Author: pycc contributors
Author-email: 
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Android
Classifier: Operating System :: POSIX :: Linux
Classifier: Environment :: Console
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: cython>=3.0.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# pycc - Python to ELF Compiler

A tool to compile Python/Pyrex files to standalone executables or shared libraries.

## Features

- Compile `.py` and `.pyx` files to ELF executables
- Generate shared libraries (`.so`) for Python imports
- Support `-c` to generate C files, `-cpp` for C++ files
- Interactive mode for rapid prototyping
- Optimize with `-O0` to `-O3`
- Static compilation with clang

## Installation

```bash
pip install pycc-compiler
