-
Notifications
You must be signed in to change notification settings - Fork 237
/
pyproject.toml
37 lines (34 loc) · 1020 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rubber-docker"
version = "1.0.0"
dependencies = [
"click",
]
requires-python = ">=3.8"
authors = [
{name = "Avishai Ish-Shalom", email = "[email protected]"},
{name = "Nati Cohen", email = "[email protected]"},
]
maintainers = [
{name = "Avishai Ish-Shalom", email = "[email protected]"},
{name = "Nati Cohen", email = "[email protected]"},
]
description = "Docker from scratch"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["docker", "containers"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://github.com/Fewbytes/rubber-docker"
Documentation = "hhttps://github.com/Fewbytes/rubber-docker"
Repository = "https://github.com/Fewbytes/rubber-docker.git"
"Bug Tracker" = "https://github.com/Fewbytes/rubber-docker/issues"
[tool.setuptools]
packages = ["linux"]
package-dir = {"linux" = "."}