-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.42 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
[build-system]
requires = [
"wheel>=0.38.4",
"setuptools>=68.0.0",
"toml>=0.10.0",
"jinja2>=3.1.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "bundle-app"
dynamic = ["version"]
description = "Constructs a macOS App bundle with a python executable."
readme = {file = "README.rst", content-type = "text/x-rst"}
authors = [
{ name="Marc Culler", email="[email protected]" },
{ name="Nathan M. Dunfield", email="[email protected]" },
{ name="Matthias Görner", email="[email protected]" },
]
maintainers = [
{ name="Marc Culler", email="[email protected]" },
{ name="Nathan M. Dunfield", email="[email protected]" },
{ name="Matthias Görner", email="[email protected]" },
]
requires-python = ">=3.10"
dependencies = ["toml>=0.10.0"]
keywords = ["files", "metadata"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: MacOS",
"Programming Language :: Python",
"Topic :: Desktop Environment :: File Managers",
]
[project.urls]
"Homepage" = "https://github.com/3-manifolds/bundle_app"
"Bug Tracker" = "https://github.com/3-manifolds/bundle_app/issues"
[tool.setuptools.dynamic]
version = {attr = "bundle_app.__version__"}
[tool.setuptools.package-data]
bundle_app = ["templates/*", "templates/main_ex/*"]