-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (31 loc) · 879 Bytes
/
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
[project]
name = "SlyYTDAPI"
version = "0.4.12"
description = "No-boilerplate, async and typed YouTube Data API access."
readme = "README.md"
requires-python = ">=3.10"
license = { file="LICENSE" }
authors = [{name="Dunkyl 🔣🔣"}]
dependencies = [ 'SlyAPI >= 0.5.0', 'SlySerialize' ]
[project.optional-dependencies]
dev = [
# testing
'pytest',
'pytest-asyncio',
# docs
'myst-parser',
'furo',
'sphinxcontrib-trio',
'sphinx-copybutton',
'sphinxext-opengraph'
]
[project.urls]
Homepage = "https://docs.dunkyl.net/SlyYTDAPI-Python/"
Repository = "https://github.com/dunkyl/SlyYTDAPI-Python"
Documentation = "https://docs.dunkyl.net/SlyYTDAPI-Python/"
"Bug Tracker" = "https://github.com/dunkyl/SlyYTDAPI-Python/issues"
[build-system]
requires = ["setuptools", "wheel"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["test"]