-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (63 loc) · 1.54 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[project]
name = "dan-build"
dynamic = ["version"]
description = "Python-based build system."
authors = [
{name = "Garcia Sylvain", email="[email protected]"},
{email = "[email protected]"}
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.10"
keywords = ["packaging", "dependency", "build system"]
classifiers = [
"Topic :: Software Development"
]
dependencies = [
"click>=8.0.0",
"jinja2",
"distro",
"pyyaml",
"aiofiles",
"aiohttp",
"async-property>=0.2.2",
"termcolor",
'importlib-metadata',
'dataclasses-json',
'lockfile',
'pefile',
'pyelftools',
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["dan*"]
[tool.setuptools.package-data]
"dan.pkgconfig.templates" = ["*.jinja2"]
"dan.cli.templates" = ["*"]
"dan.cxx.data" = ["*"]
[tool.setuptools.data-files]
"etc/bash_completion.d" = [
"completion/bash/dan.sh",
"completion/bash/dan-io.sh",
]
"etc/zsh_completion.d" = [
"completion/zsh/dan.sh",
"completion/zsh/dan-io.sh",
]
[project.optional-dependencies]
#dev = [
# "black>=18.3-alpha.0",
#]
[project.urls]
homepage = "https://github.com/Garcia6L20/dan"
documentation = "https://github.com/Garcia6L20/dan"
repository = "https://github.com/Garcia6L20/dan"
[project.scripts]
dan = "dan.cli.main:main"
dan-io = "dan.cli.io:main"
[build-system]
requires = ["setuptools>=40.8.0", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true