-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.08 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
[project]
name = "blender-nvim"
dynamic = ["version"]
description = ''
requires-python = ">=3.11"
license = "MIT"
keywords = []
authors = [
{ name = "Maddison Hellstrom" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["debugpy", "pynvim"]
[project.urls]
Documentation = "https://github.com/b0o/blender.nvim"
Issues = "https://github.com/b0o/blender.nvim/issues"
Source = "https://github.com/b0o/blender.nvim"
[tool.hatch.envs.default]
dependencies = [
"fake-bpy-module-4.0",
]
[[tool.hatch.envs.all.matrix]]
python = ["3.11"]
[tool.hatch.envs.types]
dependencies = [
"mypy>=1.0.0",
]
[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive {args:blender_nvim}"