8 lines
141 B
Python
8 lines
141 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
setup(
|
||
|
name='wireguard-nat-nftables',
|
||
|
version='0.0.1',
|
||
|
scripts=['wireguard-nat-nftables.py']
|
||
|
)
|