forked from devcontainers/cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 968 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 968 Bytes
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
[build-system]
requires = ["maturin>=1.8,<2"]
build-backend = "maturin"
[project]
name = "devcontainer-rs"
dynamic = ["version"]
description = "Native Rust implementation of the Dev Containers CLI"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = ["devcontainer", "devcontainers", "cli", "containers"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Rust",
"Topic :: Software Development",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/jooh/devcontainer-rs"
Repository = "https://github.com/jooh/devcontainer-rs"
Issues = "https://github.com/jooh/devcontainer-rs/issues"
[tool.maturin]
manifest-path = "cmd/devcontainer/Cargo.toml"
bindings = "bin"
strip = true
compatibility = "pypi"