spiegel-keyman/linux/keyman-config/setup.py
Eberhard Beilharz 8873ab5bcb
chore(linux): Fix make install
Another attempt to fix #7400.
2022-12-09 12:40:40 +01:00

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,
)