forked from leonnnn/pyxtrlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (39 loc) · 1.42 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
from setuptools import setup
authors = (
'Leon Weber <[email protected]>, '
'Sebastian Riese <[email protected]>'
)
desc = (
'The X transparent screen lock rewritten in Python, using XCB and PAM.'
)
long_desc = """
pyxtrlock -- The leightweight screen locker rewritten in Python
---------------------------------------------------------------
pyxtrlock is a very limited transparent X screen locker inspired by Ian
Jackson’s great xtrlock program. pyxtrlock uses modern libraries, most
importantly the obsolete direct passwd/shadow authentication has been replaced
by today’s PAM authentication mechanism, hence it also works on Fedora. Also,
it’s mostly written using XCB instead of Xlib.
"""
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='pyxtrlock',
version='0.4',
author=authors,
author_email='[email protected]',
requires=['simplepam', 'pyxdg'],
packages=['pyxtrlock'],
scripts=['bin/pyxtrlock'],
license='GPLv3+',
url='https://github.com/leonnnn/pyxtrlock',
description=desc,
long_description=long_desc,
classifiers=classifiers
)