Metadata-Version: 2.4
Name: pycc-compiler
Version: 1.4.7
Summary: Compile Python to ELF executable
Author: pycc contributors
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: cython>=3.0.0
Dynamic: author
Dynamic: description
Dynamic: description-content-type
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
