File: setup.py

package info (click to toggle)
keyman 18.0.246-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,316 kB
  • sloc: python: 52,784; cpp: 21,289; sh: 7,633; ansic: 4,823; xml: 3,617; perl: 959; makefile: 139; javascript: 138
file content (46 lines) | stat: -rw-r--r-- 1,245 bytes parent folder | download | duplicates (2)
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
39
40
41
42
43
44
45
46
#!/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=[
        'dbus-python',
        'lxml',
        'numpy',
        'packaging',
        'pillow',
        'PyGObject',
        'python-magic',
        'pyxdg',
        'qrcode',
        'requests-cache',
        'requests',
        '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,
)