-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.27 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "speedruncompy"
authors = [
{name = "Jamie", email = "jamie@manicjamie.com"},
]
description = "A wrapper for speedrun.com's obscure new v2 API, as used by their new site"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["speedrun"]
license = {text = "LGPLv2.1"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)"
]
dependencies = [
"aiohttp[speedups]~=3.13.5",
"pydantic~=2.13.3",
"bidict~=0.23.1"
]
dynamic = ["version"]
[project.scripts]
srcompy-login = "speedruncompy.scripts.srcompy_login:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = [
"src/speedruncompy"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"python-dotenv",
]
[project.urls]
Homepage = "https://github.com/ManicJamie/speedruncompy"
Repository = "https://github.com/ManicJamie/speedruncompy.git"
"Bug Tracker" = "https://github.com/ManicJamie/speedruncompy/issues"
[tool.pytest.ini_options]
log_cli = true
asyncio_mode = "auto"