-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 926 Bytes
/
pyproject.toml
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
35
36
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "python-sotools"
authors = [
{name = "Jean-Baptiste Skutnik", email = "[email protected]"},
]
description = "Collection of dynamic linking tools"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["elf", "linking", "linux", "libraries", "system"]
license = {text = "BSD-3-Clause"}
classifiers = [
'Intended Audience :: Developers',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
]
dependencies = [
"pyelftools",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["sotools"]
[project.scripts]
sowhich = "sotools.scripts.sowhich:main"
"ldd.py" = "sotools.scripts.ldd:main"
#"ldconfig.py" = "sotools.scripts.ldconfig:main"
[tool.setuptools_scm]
write_to = "sotools/version.py"