-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
40 lines (33 loc) · 1.11 KB
/
pyproject.toml
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
#
# It seeems pyproject(python-build) is still not mature to build native modules.
# So we don't use pyton-buold at the moment.
# This file is just provided for future possible use of `python-build`.
#
[build-system]
requires = [
# NOTE: setuptools_scm>=8 is not supported in py3.6 cibuildwheel env.
# so use older setuptools_scm for a while
#"setuptools>=64",
#"setuptools_scm>=8",
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel", "scikit-build", "cmake>=3.16", "ninja"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 140
[project]
name = "tinyusdz"
#version = "0.8.0rc5"
# Use setuptools_scm
dynamic = ["version"]
description = "Python binding of TinyUSDZ"
license = {file = "LICENSE"}
authors = [{ name = "Syoyo Fujita", email = "[email protected]"},
{ name = "Light Transport Entertainment, Inc.", email = "[email protected]"}
]
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools_scm]
# setuptools_scm>=8
#version_file = "python/tinyusdz/_version.py"
# setuptools_scm<8
write_to = "python/tinyusdz/_version.py"