From 637d2842e89fcddfdb2c92331eb212abc7dfeea0 Mon Sep 17 00:00:00 2001 From: Caio_Coldebella Date: Fri, 3 May 2024 23:23:24 -0300 Subject: [PATCH] docs: update README --- README.md | 14 +++++++++----- setup.py | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index de87625..ce901a1 100644 --- a/README.md +++ b/README.md @@ -7,14 +7,18 @@ The software was developed and tested in Ubuntu 22.04, and tested on Windows. Th ## Installation It is suggested to create a Python environment with Conda: - conda create -n micview python=3.8 - conda activate micview + $ conda create -n micview python=3.8 + $ conda activate micview To download the package, do: - git clone https://github.com/MICLab-Unicamp/micview - cd micview - pip install . + $ pip install MICView + +Or fork this GitHub Repository: + + $ git clone https://github.com/MICLab-Unicamp/micview + $ cd micview + $ pip install . ## Using You can use the API calling inside a terminal, and calling functions of micview inside your Python code, to call micview inside a terminal do: diff --git a/setup.py b/setup.py index 9ae9665..9c13e9a 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", - "Operating System :: Linux", + "Operating System :: OS Independent", ], python_requires='>=3.8', install_requires=['setuptools', 'numpy>=1.22', 'pillow>=9.0.0',