-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "pythonanywhere-briefcase-plugin"
version = "0.0.1a4"
description = "A Briefcase publication channel plugin for deploying static web apps to PythonAnywhere."
requires-python = ">= 3.10"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "PythonAnywhere", email = "developers@pythonanywhere.com"},
]
keywords = ["briefcase", "pythonanywhere", "deployment", "web", "static"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
]
dependencies = [
"pythonanywhere-core >= 0.3.0",
]
[project.urls]
Documentation = "https://briefcase.pythonanywhere.com/"
Repository = "https://github.com/pythonanywhere/pythonanywhere-briefcase-plugin"
[build-system]
requires = ["uv_build >=0.10.7, <0.11"]
build-backend = "uv_build"
[dependency-groups]
test = [
"pytest >= 9.0",
"pytest-cov >= 7.0",
"pytest-mock >= 3.10",
"responses >= 0.25",
]
dev = [
{include-group = "test"},
"briefcase @ git+https://github.com/beeware/briefcase@fca2cab707794f169b61fe2641d31af262bc5566",
"ruff >= 0.11",
]
[project.entry-points."briefcase.channels.web.static"]
pythonanywhere = "pythonanywhere_briefcase_plugin:PythonAnywherePublicationChannel"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint]
extend-select = [
"E", "W", "F", "UP", "B", "I", "RUF",
]
[tool.coverage.run]
branch = true
source_pkgs = ["pythonanywhere_briefcase_plugin"]
[tool.coverage.report]
show_missing = true
skip_covered = true