-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 881 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
classifiers=['Development Status :: 4 - Beta',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Desktop Environment :: Window Managers :: Applets']
setup(name='caps-lock',
version='1.0',
description='Keyboard Status Applet',
author='Leandro Cerencio',
author_email='cerencio@yahoo.com.br',
url='https://www.github.com/lemoce/caps-lock',
packages=['caps_lock'],
package_dir={'caps_lock':'src/caps_lock'},
package_data={'caps_lock':['data/*.svg']},
entry_points={'console_scripts': ['keystatusapplet=caps_lock.module:main']})