-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 987 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (39 loc) · 987 Bytes
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
[project]
name = "NMSDK"
description = "Blender plugin to import and export NMS scenes"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["modelling", "games", "modding"]
authors = [
{name = "monkeyman192"}
]
maintainers = [
{name = "monkeyman192"}
]
dependencies = [
"fake-bpy-module",
"hgpaktool",
"numpy",
]
dynamic = ["version"]
[tool.uv]
python-preference = "only-system"
[tool.setuptools.package-dir]
NMSDK = "src/addon/nmsdk"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.ruff]
line-length = 110
[tool.ruff.lint]
select = ["E", "F", "I"]
preview = true
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.extend-per-file-ignores]
"cpptypes.py" = ["E501"]
[project.urls]
homepage = "https://github.com/monkeyman192/NMSDK"
repository = "https://github.com/monkeyman192/NMSDK.git"
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools-scm>=8", "setuptools_scm_git_semver"]
build-backend = "setuptools.build_meta"