1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# vim:fileencoding=utf-8:noet
import io
from os import path
from setuptools import setup
version = "0.7.2"
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="powerline-taskwarrior",
description="Powerline segments for showing information from the Taskwarrior task manager",
version=version,
keywords="powerline taskwarrior context prompt",
license="MIT",
author="German Lashevich",
author_email="german.lashevich@gmail.com",
url="https://github.com/zebradil/powerline-taskwarrior",
download_url="https://github.com/zebradil/powerline-taskwarrior/tarball/{version}".format(version=version),
packages=["powerline_taskwarrior"],
install_requires=["powerline-status"],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Terminals",
],
long_description=long_description,
long_description_content_type="text/markdown",
)
|