mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 22:48:02 +03:00
24 lines
364 B
TOML
24 lines
364 B
TOML
|
|
[project]
|
|
name = "my-project"
|
|
version = "0.1.0"
|
|
description = ""
|
|
dependencies = [
|
|
"requests>=2.31.0",
|
|
]
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
[project.scripts]
|
|
my-script = "my_project:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pi>=0.1.2",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|