-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 825 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
35
[project]
name = "pythonista-wkapp"
requires-python = ">= 3.10"
dependencies = [
"bottle >= 0.13.4",
"Mako",
"requests"
]
authors = [
{name = "M4nw3l", email = "63550247+M4nw3l@users.noreply.github.com"},
]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: iOS",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: User Interfaces"
]
dynamic = ["version", "description"]
[project.urls]
Homepage = "https://github.com/m4nw3l/pythonista-wkapp"
[tool.flit.module]
name = "wkapp"
[tool.flit.sdist]
exclude = ["**/.*/"]
[build-system]
requires = ["flit_core >=3.11,<4"]
build-backend = "flit_core.buildapi"