-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
61 lines (56 loc) · 1.68 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
[build-system]
requires = ["maturin>=1.10,<2.0"]
build-backend = "maturin"
[project]
name = "mewnala"
requires-python = ">=3.10"
description = "Python bindings for libprocessing — a creative coding library inspired by Processing"
license = "MIT OR Apache-2.0"
authors = [
{ name = "The Processing Foundation" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Graphics",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"ipython>=8.12.3",
"jupyter>=1.1.1",
]
[project.urls]
Homepage = "https://github.com/processing/libprocessing"
Repository = "https://github.com/processing/libprocessing"
Issues = "https://github.com/processing/libprocessing/issues"
[dependency-groups]
dev = ["maturin>=1.10,<2.0"]
docs = [
"mkdocs-material>=9.6",
"mkdocstrings[python]>=0.29",
"mkdocs-gen-files>=0.5",
]
[tool.maturin]
manifest-path = "Cargo.toml"
include = [
{ path = "mewnala/*.pyi", format = "sdist" },
{ path = "mewnala/*.pyi", format = "wheel" },
{ path = "mewnala/py.typed", format = "sdist" },
{ path = "mewnala/py.typed", format = "wheel" },
]
[tool.uv]
cache-keys = [
{ file = "pyproject.toml" },
{ file = "Cargo.toml" },
{ file = "src/**/*.rs" },
{ file = "../../src/**/*.rs" },
{ file = "../processing_render/src/**/*.rs" },
{ file = "../processing_render/Cargo.toml" },
]