-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 928 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
37
38
39
40
[project]
license = { file = "LICENSE" }
name = "vts-api"
version = "0.0.1.2"
description = "Python API wrapper for VTube Studio"
readme = "README.md"
requires-python = ">=3.7"
authors = [{ name = "Timtaran", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"websockets",
"pydantic",
"numpy",
"loguru",
"ujson",
"aiofiles"
]
[project.urls]
"Source Code" = "https://github.com/Timtaran/vts-api"
"Bug Reports" = "https://github.com/Timtaran/vts-api/issues"
"Documentation" = "https://vts-api.rtfd.io"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov=test_proj"
testpaths = ["tests"]
[tool.mypy]
mypy_path = "src"
ignore_missing_imports = true
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401"]