File: setup.py

package info (click to toggle)
notifymuch 0.1~git20151223.0.9d4aaf5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: python: 248; sh: 13; makefile: 2
file content (27 lines) | stat: -rwxr-xr-x 600 bytes parent folder | download
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",
    ],
)