forked from tinyobjloader/tinyobjloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (29 loc) · 837 Bytes
/
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
[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]<8",
"wheel",
"pybind11>=2.10.0",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 140
[project]
name = "tinyobjloader"
# version: Use setuptools_scm
dynamic = ["version", "classifiers", "authors", "description"]
readme = {file = "README.md", content-type = "text/markdown"}
# Project URLs in pyproject.toml is not mature.
# so write it to setup.py
# https://github.com/pypa/packaging-problems/issues/606
#
# [project.urils]
[tool.setuptools_scm]
# setuptools_scm>=8
#version_file = "python/_version.py"
# setuptools_scm<8
write_to = "python/_version.py"