-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (37 loc) · 1.28 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
from setuptools import setup, find_packages
from easy_karabiner import __version__
setup(
name='easy_karabiner',
version=__version__,
description='A tool to simplify key-remapping configuration for Karabiner',
author='loggerhead',
author_email='[email protected]',
url='https://github.com/loggerhead/Easy-Karabiner',
keywords=('Karabiner', 'configer', 'remap', 'key'),
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=[
'lxml >= 3.0.0, < 4.0.0',
'click >= 6.0.0, < 7.0.0',
],
entry_points='''
[console_scripts]
easy_karabiner=easy_karabiner.main:main
''',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
]
)