-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (61 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
66 lines (61 loc) · 1.62 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
[build-system]
requires = [
"setuptools>=77.0",
"setuptools-scm>=8",
"pyside6-essentials~=6.9", # Needed to build uic files
]
build-backend = "setuptools.build_meta"
[project]
name = "splitguides"
description = "A tool for speedrunners to display notes that advance automatically with their splits in Livesplit."
authors = [
{ name = "David C Ellis" },
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pyside6~=6.9.0",
"jinja2~=3.1",
"bleach[css]==6.0", # Each upgrade to bleach has broken something so pin it.
"flask~=3.0",
"markdown~=3.6",
"keyboard~=0.13.5",
"ducktools-classbuilder>=0.7.4",
"waitress~=3.0",
"platformdirs~=4.3",
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment",
]
dynamic = ['version']
license = "GPL-3.0-or-later"
[project.scripts]
# For debugging reasons splitguides is not a gui-script
splitguides = "splitguides.__main__:main"
splitguides-server = "splitguides.server.__main__:launch"
[dependency-groups]
dev = [
"pytest>=8.4",
"pytest-cov>=6.1",
"pytest-qt>=4.4",
]
build = [
"cx-freeze>=8.3",
"pywin32>=308; sys_platform == 'win32'",
]
[tool.setuptools_scm]
version_file = "src/splitguides/_version.py"
version_file_template = """
__version__ = "{version}"
__version_tuple__ = {version_tuple}
"""
[tool.pytest.ini_options]
addopts = "--cov=src/ --cov-report=term-missing"
testpaths = [
"tests",
]