Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions erpc_python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,26 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from setuptools import setup
from erpc import erpc_version
from codecs import open
from os import path

ERPC_VERSION = None
here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.rst'), 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.ERPC_VERSION,
version=ERPC_VERSION,
description="eRPC Python infrastructure",
long_description=long_description,
author="NXP",
Expand Down