pppwn-nix/setup.py

12 lines
256 B
Python
Raw Permalink Normal View History

2024-10-28 11:18:43 -06:00
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='pppwn',
version='1.0',
# Modules to import from other scripts:
packages=find_packages(),
# Executables
scripts=["pppwn.py", "offsets.py"],
)