FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
erpc/erpc_python/setup.py at main · EmbeddedRPC/erpc · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
EmbeddedRPC
/
erpc
Public
Notifications
You must be signed in to change notification settings
Fork
257
Star
951
Code
Issues
111
Pull requests
23
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
erpc
/
erpc_python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (44 loc) · 1.56 KB
Breadcrumbs
erpc
/
erpc_python
/
setup.py
Copy path
File metadata and controls
51 lines (44 loc) · 1.56 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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'
],
)
Back
|
FazBrowse Home
|
New Git URL