-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
43 lines (36 loc) · 892 Bytes
/
pyproject.toml
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
[build-system]
requires = [
"hatchling",
"hatch-vcs"
]
build-backend = "hatchling.build"
[project]
name = "jvc_projector_remote"
authors = [{name="bezmi"}]
description = "A package to control JVC projectors over IP"
readme = "README.md"
licence = {file="LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = [
"version",
"urls",
]
[tool.hatch.metadata.hooks.vcs.urls]
"Homepage" = "https://github.com/bezmi/jvc_projector"
"Bug tracker" = "https://github.com/bezmi/jvc_projector/issues"
"Source archive" = "https://github.com/bezmi/jvc_projector/archive/{commit_hash}.zip"
[tool.hatch.build]
exclude = [
"/.*",
"/docs",
"/dist",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"