-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
74 lines (67 loc) · 2.13 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/python
# ---------------------------------------------------------------------------
# Setup script for MTDA
# ---------------------------------------------------------------------------
#
# This software is a part of MTDA.
# Copyright (C) 2024 Siemens Digital Industries Software
#
# ---------------------------------------------------------------------------
# SPDX-License-Identifier: MIT
# ---------------------------------------------------------------------------
from setuptools import setup, find_packages
from mtda import __version__
setup(
name='mtda',
version=__version__,
scripts=[
'mtda-cli',
'mtda-config',
'mtda-service',
'mtda-systemd-helper',
'mtda-ui'
],
packages=find_packages(exclude=["demos"]),
package_data={'mtda': ['assets/*.*', 'templates/*.html']},
author='Cedric Hombourger',
author_email='[email protected]',
maintainer='Cedric Hombourger',
maintainer_email='[email protected]',
description='Multi-Tenant Device Access',
long_description='''
mtda is a small agent abstracting hardware controls and interfaces for a
connected test device. The main purpose of this tool is to allow developers
and testers to remotely access and control hardware devices.
''',
url='https://github.com/siemens/mtda',
license='MIT',
keywords='remote test',
classifiers=[
"Topic :: Utilities",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.0",
"Topic :: Software Development :: Embedded Systems",
],
include_package_data=True,
install_requires=[
"docker",
"flask_socketio",
"gevent",
"gevent-websocket",
"kconfiglib",
"pyserial>=2.6",
"python-daemon>=2.0",
"pyusb>=1.0",
"pyzmq>=15.0,<25.0.0",
"psutil",
"requests",
"systemd-python>=234",
"urwid",
"zerorpc>=0.6.0",
"zstandard>=0.14",
"zeroconf>=0.28.6"
],
)