forked from abcminiuser/python-elgato-streamdeck
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 781 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (27 loc) · 781 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "streamcontroller-streamdeck"
description = "Library to control Elgato StreamDeck devices."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Core447", email = "core447@proton.me"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/StreamController/sc-python-elgato-streamdeck"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {file = ["VERSION"]}