forked from Pithikos/mbed_lmtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 1.04 KB
/
setup.py
File metadata and controls
36 lines (30 loc) · 1.04 KB
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
"""
This module defines the attributes of the
PyPI package for the mbed SDK test suite
"""
import os
from distutils.core import setup
from setuptools import find_packages
DESCRIPTION = "Command line tools used to detect connected mbed enabled devices. See http://mbed.org for details"
OWNER_NAMES = 'Przemyslaw Wirkus, Johan Seferidis'
OWNER_EMAILS = 'Przemyslaw.Wirkus@arm.com, Johan.Seferidis@arm.com'
# Utility function to cat in a file (used for the README)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='mbed-lmtools',
version='0.1.2',
description=DESCRIPTION,
long_description=read('README.md'),
author=OWNER_NAMES,
author_email=OWNER_EMAILS,
maintainer=OWNER_NAMES,
maintainer_email=OWNER_EMAILS,
url='https://github.com/mbedmicro/mbed',
packages=find_packages(),
license="Apache-2.0",
entry_points={
"console_scripts": [
"lm=lmtools:main",
],
},
install_requires=["PrettyTable>=0.7.2"])