forked from siemens/mtda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (53 loc) · 1.79 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
#!/usr/bin/python
# ---------------------------------------------------------------------------
# Setup script for MTDA
# ---------------------------------------------------------------------------
#
# This software is a part of MTDA.
# Copyright (C) 2022 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-ui'],
packages=find_packages(exclude=["demos"]),
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",
],
install_requires=[
"docker",
"pyserial>=2.6",
"python-daemon>=2.0",
"pyusb>=1.0",
"pyzmq>=15.0",
"psutil",
"requests",
"zerorpc>=0.6.0",
"zstandard>=0.14",
"zeroconf>=0.28.6"
],
)