-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (45 loc) · 1.2 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
46
47
48
49
50
51
52
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "speedruncompy"
authors = [
{name = "Jamie", email = "jamie.on.twitch@gmail.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",
"aenum"
]
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"
]
[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"