-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
43 lines (38 loc) · 1.05 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
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dockershrink"
version = "0.1.4"
description = "Commandline tool to reduce the size of your Docker Images"
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE"}
keywords = [
"docker", "container", "image-size", "optimization", "nodejs", "cli", "ai"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
authors = [
{name = "Raghav Dua", email = "dockershrink@gmail.com"}
]
dependencies = [
"colorama ==0.4.4",
"openai ==1.55.3",
"dockerfile ==3.3.1",
"bashlex ==0.18",
]
[project.scripts]
dockershrink = "dockershrink.cli:main"
[project.optional-dependencies]
dev = [
"black>=24.10.0",
]
[project.urls]
homepage = "https://github.com/duaraghav8/dockershrink"
repository = "https://github.com/duaraghav8/dockershrink"
documentation = "https://github.com/duaraghav8/dockershrink#readme"
[tool.setuptools.packages.find]
include = ["dockershrink", "dockershrink.*"]