10 lines
169 B
Python
10 lines
169 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='ptray',
|
|
version='0.1',
|
|
scripts=[ 'ptray', 'ptrayctl' ],
|
|
packages=['', 'i3sway'],
|
|
)
|