diff --git a/dist/resourcefit-0.1.0.tar.gz b/dist/resourcefit-0.1.0.tar.gz deleted file mode 100644 index 8a81eba..0000000 Binary files a/dist/resourcefit-0.1.0.tar.gz and /dev/null differ diff --git a/dist/resourcefit-0.1.0-py3-none-any.whl b/dist/resourcefit-0.1.1-py3-none-any.whl similarity index 61% rename from dist/resourcefit-0.1.0-py3-none-any.whl rename to dist/resourcefit-0.1.1-py3-none-any.whl index c024024..f91fc96 100644 Binary files a/dist/resourcefit-0.1.0-py3-none-any.whl and b/dist/resourcefit-0.1.1-py3-none-any.whl differ diff --git a/dist/resourcefit-0.1.1.tar.gz b/dist/resourcefit-0.1.1.tar.gz new file mode 100644 index 0000000..8c90b32 Binary files /dev/null and b/dist/resourcefit-0.1.1.tar.gz differ diff --git a/pyproject.toml b/pyproject.toml index 45db2f8..086a2a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,34 +4,26 @@ build-backend = "setuptools.build_meta" [project] name = "resourcefit" -version = "0.1.0" +version = "0.1.1" description = "CLI tool for analyzing Docker containers and recommending EC2 instances." -authors = [ - {name = "Olayinka Jimba Jr.", email = "ojimba01@gmail.com"} -] +authors = [{ name = "Olayinka Jimba Jr.", email = "ojimba01@gmail.com" }] requires-python = ">=3.9" -dependencies = [ - "psutil", - "pandas", - "requests", - "click", - "docker", -] +dependencies = ["psutil", "pandas", "requests", "click", "docker"] readme = "README.md" license = { text = "MIT" } keywords = ["docker", "EC2", "AWS", "cloud"] classifiers = [ - "Development Status :: 3 - Alpha", - "Intended Audience :: Developers", - "Topic :: Software Development :: Build Tools", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Operating System :: OS Independent" + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Topic :: Software Development :: Build Tools", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Operating System :: OS Independent", ] [project.urls] diff --git a/resourcefit.egg-info/PKG-INFO b/resourcefit.egg-info/PKG-INFO index 89b6998..8e4867e 100644 --- a/resourcefit.egg-info/PKG-INFO +++ b/resourcefit.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: resourcefit -Version: 0.1.0 +Version: 0.1.1 Summary: CLI tool for analyzing Docker containers and recommending EC2 instances. Home-page: https://github.com/ojimba01/resourcefit Author: Olayinka Jimba @@ -45,17 +45,16 @@ Requires-Dist: docker To install ResourceFit, follow the steps below: -1. Clone the repository: +1. Have python (version 3.9 and above) installed on your device, follow the link below to do this: ```bash - git clone https://github.com/yourusername/ResourceFit.git - cd ResourceFit + https://www.python.org/downloads/ ``` -2. Install ResourceFit in editable mode: +2. Install ResourceFit: ```bash - pip install -e . + pip install resourcefit ``` ## Usage diff --git a/setup.py b/setup.py index f980a21..878ffe3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="resourcefit", - version="0.1.0", + version="0.1.1", packages=find_packages(), install_requires=[ 'psutil>=5.9.5',