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
|
#!/usr/bin/env python3
from setuptools import setup
def readme():
with open("README.rst", "r") as f:
return f.read()
setup(
name="notifymuch",
version="0.1",
description="Display desktop notifications for unread mail in notmuch "
"database",
long_description=readme(),
author="Kiprianas Spiridonovas",
author_email="k.spiridonovas@gmail.com",
url="https://github.com/kspi/notifymuch",
license="GPL3",
packages=['notifymuch'],
scripts=["bin/notifymuch"],
install_requires=[
"notmuch2",
"pygobject",
],
)
|