forked from lavie/runlike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.34 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
44
45
[build-system]
requires = ["poetry-core>=1.0.0,<2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "runlike"
version = "1.6.3"
description = "Reverse-engineer docker run command line arguments based on running containers"
authors = ["Assaf Lavie <[email protected]>"]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.0.1"
[tool.poetry.group.dev.dependencies]
nose = "^1.3.7"
pytest = "^8.3.4"
wheel = "^0.45.1"
toml = "^0.10.2"
[tool.poetry.scripts]
runlike = "runlike.runlike:main"
[project.urls]
"Homepage" = "https://github.com/lavie/runlike"
"Bug Reports" = "https://github.com/lavie/runlike/issues"
"Source" = "https://github.com/lavie/runlike"