-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.51 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
#
# debdeploy - Build dpkg package and it dependencies from dpkg cache
# Copyright (C) 2023 Kovalit31
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
[project]
name = "debdeploy"
version = "1.2.1"
requires-python = ">=3.5"
description = "Deb package builder from dpkg cache"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Kovalit31", email = "nonecone20@gmail.com" }
]
keywords = [
"debian",
"debian-packages",
"administration",
"linux",
"package-manager",
"offline",
"system",
"deployment"
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Software Distribution",
"Topic :: Utilities"
]
dependencies = []
[project.urls]
repository = "https://github.com/Kovalit31/python-debdeploy"
[project.scripts]
debdeploy = "debdeploy:main"