-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
29 lines (23 loc) · 861 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
[build-system]
requires = ["setuptools>=69", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pymakeutils"
description = "CLI utilities to extract information from 'make -pq' output"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [{ name = "Luca Colagrande", email = "colluca@iis.ee.ethz.ch" }]
# Version comes from git tags via setuptools-scm
dynamic = ["version", "dependencies"]
[tool.setuptools_scm]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
# Expose your scripts as console commands
[project.scripts]
list-make-prerequisites = "pymakeutils.list_make_prerequisites:main"
list-dependent-make-targets = "pymakeutils.list_dependent_make_targets:main"