forked from Jaxc/PyStageLinQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.15 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
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "PyStageLinQ"
authors = [
{ email="jaxc@skrooter.com" },
]
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==6.1.0",
]
[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 = [
"."
]
[tool.hatch.build]
exclude = [
".circleci/",
".github/",
".gitignore",
"*.md",
"tests/",
"docs/",
"tools/",
"make_release.sh",
]