Skip to content

Commit

Permalink
general dist clean up after release
Browse files Browse the repository at this point in the history
  • Loading branch information
ojimba01 committed Oct 17, 2024
1 parent 578f537 commit a994f59
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 28 deletions.
Binary file removed dist/resourcefit-0.1.0.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added dist/resourcefit-0.1.1.tar.gz
Binary file not shown.
34 changes: 13 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"}
]
authors = [{ name = "Olayinka Jimba Jr.", email = "[email protected]" }]
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]
Expand Down
11 changes: 5 additions & 6 deletions resourcefit.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="resourcefit",
version="0.1.0",
version="0.1.1",
packages=find_packages(),
install_requires=[
'psutil>=5.9.5',
Expand Down

0 comments on commit a994f59

Please sign in to comment.