Metadata-Version: 2.4
Name: py2pyd
Version: 0.1.5
Summary: Cross-platform .py file to shared library(dll) compiler, .pyd (Windows) or .so (Linux).
Home-page: https://github.com/sachadee/py2pyd
Author: Sacha Dehe
Author-email: sachadehe@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: Cython
Requires-Dist: setuptools
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# py2pyd

**py2pyd** is a fully cross-platform CLI tool, to compile Python scripts (`.py`) into `.pyd` shared library on **Windows** or
 `.so` on **Linux**, with only the `.py` file to compile as argument.

**Installation**
`bash|cmd :`
```bash|cmd

pip install py2pyd

```

**Usage:**

To compile a Python file to a `.pyd` shared library on Windows
 or `.so` on Linux:

```python

py2pyd myscript.py

```

**output:**

The compiled `.pyd` or `.so` shared library

