From 0d9e0aa467d2acf57f3783868c70a9fc118fdc19 Mon Sep 17 00:00:00 2001 From: Aldo Ortega Date: Thu, 28 Mar 2024 10:11:39 -0400 Subject: [PATCH] Updated readme --- README.rst | 4 +++- setup.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index daf03f4..3b2af60 100644 --- a/README.rst +++ b/README.rst @@ -78,8 +78,10 @@ To install this NApp, first, make sure to have the same venv activated as you ha $ git clone https://github.com/kytos-ng/of_lldp.git $ cd of_lldp - $ python setup.py develop + $ python3 -m pip install --editable . +To install the kytos environment, please follow our +`development environment setup `_. Requirements ============ diff --git a/setup.py b/setup.py index f8195a0..9f8b667 100644 --- a/setup.py +++ b/setup.py @@ -254,7 +254,7 @@ def read_requirements(path="requirements/run.txt"): author='Kytos Team', author_email='of-ng-dev@ncc.unesp.br', license='MIT', - install_requires=read_requirements() + ['setuptools >= 36.0.1'], + install_requires=read_requirements() + ['importlib_metadata'], packages=[], cmdclass={ 'clean': Cleaner,