-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 1.27 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "ambit"
version = "0.4.0"
description = "Take control of your Palette."
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.10"
authors = [{ name = "khimaros" }]
keywords = ["monogramcc", "palettegear", "demoscene", "pygame", "linux", "pyusb"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"Topic :: System :: Hardware",
]
# core runtime: pyusb drives the device, pygame/numpy render the screen
# and simulator, msgpack encodes monogramcc messages.
dependencies = [
"pyusb>=1.2.1",
"pygame>=2.6",
"numpy>=2.0",
"msgpack>=1.0",
]
[project.urls]
Homepage = "https://github.com/khimaros/ambit"
# dev tooling for tests, linting, the interactive console, firmware tools,
# and publishing. installed via `uv sync --extra dev`.
[project.optional-dependencies]
dev = [
"mypy>=1.8",
"coverage>=7.0",
"ipython>=8.0",
"intelhex>=2.3",
"snakeviz>=2.2",
"mtprof>=0.0.3",
"build>=1.0",
"twine>=5.0",
]
[tool.setuptools.packages.find]
include = ["ambit*"]
# package_data (ambit/resources/) and the bin/ scripts are discovered
# dynamically in setup.py.