-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (37 loc) · 1005 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
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "PyStageLinQ"
authors = [
{ email="[email protected]" },
]
description = "A Python implementation of a StagelinQ protocol"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
keywords = ["StageLinQ", "DJ", "VJ", "Denon DJ", "Prime Go", "Streaming"]
version = "0.0.0"
dependencies = [
"psutil",
]
[project.urls]
"Homepage" = "https://github.com/Jaxc/PyStageLinQ"
"Bug Tracker" = "https://github.com/Jaxc/PyStageLinQ/issues"
"Documentation" = "https://pystagelinq.readthedocs.io/en/latest/"
"Funding" = "https://ko-fi.com/jaxcie"
[project.optional-dependencies]
docs = ["sphinx", "myst-parser"]
[tool.pytest.ini_options]
testpaths = [
"tests/unit/*",
]
pythonpath = [
"."
]