-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "edi"
version = "2.2.1"
authors = [{name = "Matthias Luescher", email = "lueschem@gmail.com"}]
#license = "GPL-3.0-or-later"
description = "Embedded Development Infrastructure - edi"
keywords = [
"embedded",
"Linux",
"container",
"toolchain",
"lxd",
"lxc",
"podman",
"OCI",
"Ansible",
"Debian",
]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.5",
]
urls = {Homepage = "https://github.com/lueschem/edi"}
dependencies = [
"argcomplete",
"click",
"jinja2",
"packaging",
"python-apt",
"python-dateutil",
"python-debian",
"python-gnupg",
"pyyaml",
"requests",
]
[project.optional-dependencies]
[project.scripts]
edi = "edi:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["docs"]
namespaces = false
[tool.setuptools.package-data]
edi = [
"plugins/**",
]
tests = [
"data/**",
]