-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
executable file
·41 lines (39 loc) · 1.37 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
#!/usr/bin/env python3
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='xinput-gui',
version='0.3.1',
description='A simple GUI for Xorg\'s Xinput tool.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Ivan Fonseca',
author_email='[email protected]',
url='https://github.com/IvanFon/xinput-gui',
license='GPLv3+',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Desktop Environment',
'Topic :: Utilities'
],
keywords='xinput keyboard mouse touchpad',
packages=[
'xinput_gui',
'xinput_gui/gui',
'xinput_gui/xinput'
],
install_requires=['PyGObject'],
package_data={'xinput_gui': ['res/*']},
entry_points={'gui_scripts': ['xinput-gui = xinput_gui.__main__:main']}
)