forked from gonzaloflirt/link-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 918 Bytes
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
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=7", "wheel", "ninja", "cmake>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "LinkPython-extern"
description = "A fork of the LinkPython wrapper for Ableton Link"
requires-python = ">=3.8,<3.15"
authors = [{ name = "gonzaloflirt" }]
maintainers = [{ name = "thegamecracks" }]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: C++",
"Programming Language :: Python",
"Topic :: System :: Networking",
]
dynamic = ["license", "version"]
[dependency-groups]
dev = ["pytest>=7.4.4"]
[project.urls]
Homepage = "https://github.com/thegamecracks/link-python"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--ignore=modules/",
]
[tool.setuptools.packages.find]
where = ["src-py"]
[tool.setuptools_scm]