-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (40 loc) · 1.27 KB
/
setup.py
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
39
40
41
42
43
44
45
46
47
48
49
from distutils.core import setup
authors = (
'Jonas Wielicki <j.wielicki@sotecware.net>, '
'Sebastian Riese <s.riese@zombofant.net>, '
'Leon Weber <leon@leonweber.de>'
)
desc = (
'dbus aware autolocker.'
)
long_desc = """
autolockd
---------
``autolockd`` is a simple, dbus aware autolocker. ``autolock-daemon``
is run as a daemon and should be autostarted from the X
session. ``autolock-cmd`` allows control of a running ``autolockd``.
``autolockd`` is primary targetted at minimal desktop environments
like awesome and xmonad.
"""
classifiers = [
'Development Status :: 3',
'Environment :: X11 Applications',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Desktop Environment :: Screen Savers'
]
setup(name='autolockd',
version='0.1beta',
author=authors,
author_email='s.riese@zombofant.net',
requires=['dbus', 'gi'],
packages=['autolockd'],
scripts=['autolock-daemon', 'autolock-cmd'],
license='GPLv3+',
url='https://zombofant.net/hacking/autolockd',
description=desc,
long_description=long_desc,
classifiers=classifiers
)