forked from FrameworkComputer/inputmodule-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (66 loc) · 1.67 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "inputmodule"
# TODO: Dynamic version from git (requires tags)
#dynamic = ["version"]
version = "0.1.1"
description = 'A library to control input modules on the Framework 16 Laptop'
# TODO: Custom README for python project
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
keywords = [
"hatch",
]
authors = [
{ name = "Daniel Schaefer", email = "dhs@frame.work" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"pyserial",
# Optional for GUI
"getkey",
"PySimpleGUI",
# Optional for image operations
"Pillow",
]
[project.urls]
Issues = "https://github.com/FrameworkComputer/inputmodule-rs/issues"
Source = "https://github.com/FrameworkComputer/inputmodule-rs"
# TODO: Figure out how to add a runnable-script
[project.scripts]
ledmatrixctl = "inputmodule.cli:main_cli"
[project.gui-scripts]
ledmatrixgui = "inputmodule.cli:main_gui"
#[tool.hatch.version]
#source = "vcs"
#
#[tool.hatch.build.hooks.vcs]
#version-file = "inputmodule/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]
# TODO: Maybe typing with mypy
# [tool.hatch.build.targets.wheel.hooks.mypyc]
# enable-by-default = false
# dependencies = ["hatch-mypyc>=0.14.1"]
# require-runtime-dependencies = true
# mypy-args = [
# "--no-warn-unused-ignores",
# ]
#
# [tool.mypy]
# disallow_untyped_defs = false
# follow_imports = "normal"
# ignore_missing_imports = true
# pretty = true
# show_column_numbers = true
# warn_no_return = false
# warn_unused_ignores = true