-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 776 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "obs-cli"
authors = [
{name = "Philipp Schmitt", email = "philipp@schmitt.co"},
]
description = "OBS CLI"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["obs", "obs-studio"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"obsws-python",
"rich"
]
version = "0.8.3"
[project.urls]
Homepage = "https://github.com/pschmitt/obs-cli"
Documentation = "https://github.com/pschmitt/obs-cli/blob/HEAD/README.md"
Repository = "https://github.com/pschmitt/obs-cli"
Issues = "https://github.com/pschmitt/obs-cli/issues"
[tool.black]
line-length = 79
[project.scripts]
obs-cli = "obs_cli:main"