-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (37 loc) · 1.24 KB
/
setup.py
File metadata and controls
48 lines (37 loc) · 1.24 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
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 2019 The Open SoC Debug Project
#
# SPDX-License-Identifier: Apache-2.0
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='opensocdebug-systraceconv',
use_scm_version = {
"relative_to": __file__,
"write_to": "opensocdebug/systraceconv/version.py",
},
description = ("Open SoC Debug is a way to interact with and obtain "
"information from a System-on-Chip (SoC)."),
long_description = long_description,
url = "http://www.opensocdebug.org",
license = 'Apache License, Version 2.0',
author='Stefan Wallentowitz',
author_email='stefan@wallentowitz.de',
packages=find_packages(),
zip_safe=False,
setup_requires=[
'setuptools_scm',
],
entry_points = {
'console_scripts': [
'opensocdebug-systraceconv=opensocdebug.systraceconv.converter:main'
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Topic :: Software Development :: Debuggers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
],
)