mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
#!/usr/bin/python3
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
exec(open('keyman_config/version.py').read())
|
|
|
|
setup(
|
|
name="keyman_config",
|
|
version=__version__,
|
|
packages=find_packages(),
|
|
py_modules=['keyman_config.standards.lang_tags_map'],
|
|
scripts=['km-config', 'km-package-get',
|
|
'km-package-install', 'km-kvk2ldml',
|
|
'km-package-uninstall',
|
|
'km-package-list-installed'],
|
|
|
|
zip_safe=False, # don't install a zip
|
|
|
|
install_requires=[
|
|
'lxml', 'numpy', 'Pillow', 'requests', 'requests-cache',
|
|
'python-magic', 'qrcode', 'sentry-sdk'
|
|
],
|
|
|
|
# metadata to display on PyPI
|
|
author="Keyman team",
|
|
author_email="support@keyman.com",
|
|
description="Keyman for Linux configuration",
|
|
license="MIT",
|
|
keywords="keyman, keyman-config, keyboard",
|
|
url="https://keyman.com/", # project home page, if any
|
|
project_urls={
|
|
"Bug Tracker": "https://github.com/keymanapp/issues",
|
|
"Source Code": "https://github.com/keymanapp/keyman/tree/master/linux/keyman-config",
|
|
},
|
|
# include_package_data=True,
|
|
)
|