-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (33 loc) · 1013 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
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=58.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "keyboardmouse"
version = "0.3.2"
requires-python = ">= 3.8"
dependencies = [
"libevdev>=0.7",
]
authors = [
{ name="calllivecn", email="[email protected]"},
]
description = "Virtual Keyboard Mouse"
keywords = ["virtual", "keyboard", "mouse"]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.8+",
"License :: OSI Approved :: MIT License",
"Operating System :: linux",
]
# 这种不能直接把一个单独的文件作为命令安装
[project.scripts]
mouse = "mouse:main"
# ~~ckeckkey = "ckechkey.py"~~
# 需要这样才行
#list-inputs = "list-inputs:main"
[project.urls]
Homepage="https://github.com/calllivecn/keyboardmouse"
Issues="https://github.com/calllivecn/keyboardmouse/issues"