-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 1002 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 1002 Bytes
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "freeshow-web-tools"
version = "0.1.0"
description = "A guarded browser editor for FreeShow projects and slides"
readme = "README.md"
requires-python = ">=3.9"
dependencies = []
license = "MIT"
authors = [{name = "Michael DarkBlue"}]
keywords = ["freeshow", "presentations", "church", "macos"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Homepage = "https://github.com/MichaelDarkBlue/FreeShowWebTools"
Issues = "https://github.com/MichaelDarkBlue/FreeShowWebTools/issues"
[project.scripts]
freeshow-web-tools = "freeshow_web_tools.app:main"
freeshow-web-tools-worker = "freeshow_web_tools.worker:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
freeshow_web_tools = ["web/index.html", "propresenter_decode.js"]