i3pystatus/setup.py
enkore aa09079903 Add detached_down option (#26)
And some other stuff I obviously forget to commit last time.
Oh, that's just the RST port... okay :)
2014-01-16 13:39:17 +01:00

30 lines
847 B
Python
Executable File

#!/usr/bin/env python
from setuptools import setup
setup(name="i3pystatus",
version="3.28",
description="Like i3status, this generates status line for i3bar / i3wm",
url="http://github.com/enkore/i3pystatus",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Desktop Environment :: Window Managers",
],
packages=[
"i3pystatus",
"i3pystatus.core",
"i3pystatus.mail",
"i3pystatus.pulseaudio",
],
entry_points={
"console_scripts": [
"i3pystatus = i3pystatus:main"
]
},
)