mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
30 lines
930 B
Python
30 lines
930 B
Python
#!/usr/bin/python3
|
|
|
|
from setuptools import setup, find_packages
|
|
setup(
|
|
name="keyman_config",
|
|
version="10.99.1",
|
|
packages=find_packages(),
|
|
scripts=['keyman-config', 'get_kmp',
|
|
'install_kmp', 'kvk2ldml',
|
|
'uninstall_kmp', 'kmpmetadata',
|
|
'list_installed_kmp', ],
|
|
|
|
install_requires=[
|
|
'lxml', 'numpy', 'PIL', 'requests', 'requests-cache',
|
|
'python-magic',
|
|
],
|
|
|
|
# metadata to display on PyPI
|
|
author="Daniel Glassey",
|
|
author_email="wdg@debian.org",
|
|
description="Keyman for Linux configuration",
|
|
license="MIT",
|
|
keywords="keyman, keyman-config, keyboard",
|
|
url="http://www.keyman.com/", # project home page, if any
|
|
project_urls={
|
|
"Bug Tracker": "https://github.com/keymanapp/issues",
|
|
"Source Code": "https://github.com/keymanapp/keyman/linux/tree/master/linux/keyman-config",
|
|
},
|
|
# include_package_data=True,
|
|
)
|