-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 997 Bytes
/
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='mousetrap',
version='3.0.5',
description='An X11 utility that hides the mouse pointer after a specified interval of time',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Topic :: Utilities'
],
keywords='hide mouse cursor pointer x11 xlib',
url='https://github.com/eazar001/mousetrap',
author='Ebrahim Azarisooreh',
author_email='[email protected]',
license='MIT',
packages=['mousetrap'],
entry_points={"console_scripts" : ["mousetrap = mousetrap.mousetrap:main",]},
install_requires=['python-xlib'],
include_package_data=True,
zip_safe=False)