-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 1.19 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "resourcefit"
version = "0.1.3"
description = "CLI tool for analyzing Docker containers and recommending EC2 instances."
authors = [{ name = "Olayinka Jimba Jr.", email = "[email protected]" }]
requires-python = ">=3.9"
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",
]
[project.urls]
Homepage = "https://github.com/ojimba01/resourcefit"
Repository = "https://github.com/ojimba01/resourcefit"
"Bug Tracker" = "https://github.com/ojimba01/resourcefit/issues"
[project.scripts]
resourcefit = "resourcefit.main:analyze_and_recommend"