-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.3 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
43
44
# pyproject.toml
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "pypbr"
# Declare that 'version' is a dynamic field managed by setuptools_scm
dynamic = ["version"]
description = "A Python library for easy and fast manipulation of PBR materials with PyTorch integration."
readme = { file = "README.md", content-type = "text/markdown", encoding = "utf-8" }
requires-python = ">=3.6"
keywords = ["PBR", "materials", "PyTorch", "graphics"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
authors = [
{ name = "Giuseppe Vecchio", email = "giuseppevecchio@hotmail.com" }
]
urls = { Homepage = "https://gvecchio.com/PyPBR/", Repository = "https://github.com/giuvecchio/PyPBR" }
license = { text = "MIT License" }
dependencies = [
"torch>=1.7.0",
"torchvision>=0.8.0",
"numpy>=1.18.0",
"Pillow>=8.0.0"
]
[tool.setuptools]
packages = { find = { exclude = ["examples*"] } }
[tool.setuptools_scm]
write_to = "pypbr/_version.py"
fallback_version = "0.1.0" # Added fallback version
local_scheme = "no-local-version" # Disable local version identifiers