File: setup.py

package info (click to toggle)
smart-notifier 0.28-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 116 kB
  • ctags: 32
  • sloc: python: 80; makefile: 79; sh: 21
file content (38 lines) | stat: -rw-r--r-- 1,164 bytes parent folder | download | duplicates (7)
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
35
36
37
38
import os
from setuptools import setup, find_packages

def get_version():
    dir = os.path.dirname(__file__)
    fn = os.path.join(dir, 'src', 'smart_notifier', 'version.txt')
    f = open(fn, 'r')
    result = f.read()
    f.close()
    print result
    return result

# Setup SchoolTool
setup(
    name="smart_notifier",
    description="graphical hard disk health status notifier",
    long_description="""
A graphical notifier for smartmontools which attempts to show messages from
the smartd disk monitoring daemon to the user. Currently only for gtk.
.
WARNING: This package is not a replacement for regular backups. It will _try_
to warn the user when smartd sends a disk health warning. But success is not
guaranteed. At best this package is an extra layer of protection.
""",
    version=get_version(),
    url='http://lentejasverdes.ath.cx/svn/smart-notifier/',
    license="GPL",
    maintainer="Brian Sutherland",
    maintainer_email="jinty@web.de",
    platforms=["any"],
    package_dir={'': 'src'},
    package_data={'': ['*.glade', '*.txt']},
    scripts=['scripts/smart-notifier'],
    packages=find_packages('src'),
    zip_safe=False,
    )