-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
48 lines (42 loc) · 1.29 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
VERSION = '0.3'
setup(
name='mtda',
version=VERSION,
scripts=['mtda-cli'],
packages=find_packages(exclude=["demos"]),
author='Cedric Hombourger',
author_email='[email protected]',
maintainer='Cedric Hombourger',
maintainer_email='[email protected]',
description='Mentor Test Device Agent',
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://stash.alm.mentorg.com/projects/PSP/repos/mtda',
license='TBD',
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=[
"pyserial>=2.6",
"python-daemon>=2.0",
"pyusb>=1.0",
"pyzmq>=15.0",
"requests",
"RPi.GPIO",
"zerorpc>=0.6.0"
],
)