forked from linuxmint/webapp-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (37 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
50 lines (37 loc) · 1.26 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "io.github.junalmeida.webapps_manager"
license = {file = "LICENSE"}
dynamic = ["version"]
authors = [{name = "Marcos Junior", email = "junalmeida@gmail.com"}]
maintainers = [{name = "Marcos Junior", email = "junalmeida@gmail.com"}]
description = "Web Apps is a simple tool to manage web applications"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
keywords = ["web", "pwa"]
urls = {Homepage = "https://github.com/junalmeida/webapps_manager"}
dependencies = []
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
webapps_manager = "webapps_manager.application:main"
[tool.setuptools]
packages = ["webapps_manager"]
package-dir = {webapps_manager = "src"}
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "webapps_manager.version.APP_VERSION"}
[tool.setuptools.data-files]
#"share/" = ["usr/share/*"]
#"/etc/" = ["etc/*"]
[tool.uv]
config-settings = { editable_mode = "strict" }