-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 785 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 785 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ccastplayer"
version = "1.0.1"
dependencies = ["PyChromecast"]
requires-python = ">=3.9"
authors = [
{name = "Janne Snabb"},
]
description = "CLI tool for streaming video file to Chromecast"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Topic :: Multimedia :: Video :: Display"
]
[project.urls]
Homepage = "https://github.com/snabb/ccastplayer/"
Repository = "https://github.com/snabb/ccastplayer.git"
[project.scripts]
ccastplayer = "ccastplayer:main"
[tool.hatch.build.targets.wheel]
sources = ["."]
include = ["ccastplayer.py"]