10 lines
185 B
Python
10 lines
185 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name="systemd-shell",
|
||
|
version="0.0.1",
|
||
|
author="William Carroll",
|
||
|
author_email="wpcarro@gmail.com",
|
||
|
scripts=["systemd-shell"],
|
||
|
)
|