mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 22:48:02 +03:00
16 lines
322 B
TOML
16 lines
322 B
TOML
[project]
|
|
name = "my_package"
|
|
description = "my_package"
|
|
requires-python = "~=3.10"
|
|
dynamic = ["version", "dependencies"]
|
|
|
|
[project.scripts]
|
|
hello = "my_package:hello"
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.dynamic]
|
|
dependencies = {file = ["requirements.txt"]}
|