-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 924 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
37
38
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "beamer"
version = "0.2.0"
description = "Simple CLI for toggling and positioning a secondary monitor or projector"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = ["cli", "xrandr", "beamer", "mirror", "screen"]
authors = [
{name = "Philipp Miller", email = "me@philer.org" }
]
maintainers = [
{name = "Philipp Miller", email = "me@philer.org" }
]
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: POSIX :: Linux',
'Topic :: Desktop Environment',
'Topic :: Utilities',
'Natural Language :: English',
]
dependencies = [
"pydantic"
]
[project.urls]
"Source" = "https://github.com/philer/beamer"
[project.scripts]
beamer = "beamer:main"
[tool.setuptools]
py-modules = ["beamer"]