-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathsetup.py
51 lines (44 loc) · 1.56 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
#!/usr/bin/env python
# Copyright (c) 2016 Freescale Semiconductor, Inc.
# Copyright 2016-2019 NXP
# Copyright 2022 ACRIOS Systems s.r.o.
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
from setuptools import setup
from codecs import open
from os import path
ERPC_VERSION = None
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README_Pypi.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'erpc', 'erpc_version.py')) as f:
exec(f.read())
#steps: https://packaging.python.org/distributing/
#source distribution: python setup.py sdist
#wheel distribution: python setup.py bdist_wheel
#web: https://pypi.python.org/pypi?%3Aaction=submit_form
setup(
name="erpc",
version=ERPC_VERSION,
description="eRPC Python infrastructure",
long_description=long_description,
long_description_content_type="text/markdown",
author="NXP",
url='https://github.com/embeddedrpc/erpc',
license="BSD 3-Clause",
install_requires=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: Software Development :: Embedded Systems",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
keywords='rpc rpc-framework embedded multicore multiprocessor amp rpmsg_lite',
packages=['erpc'],
)