File: missing-attr-name.toml

package info (click to toggle)
python-validate-pyproject 0.24.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,340 kB
  • sloc: python: 3,053; makefile: 46; sh: 25
file content (17 lines) | stat: -rw-r--r-- 452 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Issue pypa/setuptools#3928
# https://github.com/RonnyPfannschmidt/reproduce-setuptools-dynamic-attr
[build-system]
build-backend = "_own_version_helper"
backend-path = ["."]
requires = ["setuptools" ]

[project]
name = "ronnypfannschmidt.setuptools-build-attr-error-reproduce"
description = "reproducer for a setuptools issue"
requires-python = ">=3.7"
dynamic = [
  "version",
]

[tool.setuptools.dynamic]
version = { attr = "_own_version_helper."}