-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (35 loc) · 916 Bytes
/
pyproject.toml
File metadata and controls
46 lines (35 loc) · 916 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
[build-system]
requires = [
"poetry-core>=1.9.0",
"setuptools",
"Cython",
"numpy==2.0.2; python_version < '3.13'",
"pyMSVC==0.5.4; sys_platform=='win32' and python_version < '3.13'",
"comtypes==1.1.11; sys_platform=='win32' and python_version < '3.13'",
]
build-backend = "poetry.core.masonry.api"
[tool.poetry.build]
generate-setup-file = false
script = 'build.py'
[tool.poetry]
name = "bvh"
version = "1.3.1"
description = "bvh"
authors = ["Andrew Astakhov <sthv.developer@gmail.com>", ]
readme = "README.md"
include = [
"*.so",
"*.pyd",
"*.dll",
"*.dylib",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = [{ version = "2.0.2", markers = "python_version <= '3.12'" },
{ version = "^2.1.0", markers = "python_version >= '3.13'", allow-prereleases = true },
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
cython = "*"
cython-lint = "*"
setuptools="*"