-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 760 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 760 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "utils3d"
version = "1.7"
description = "A pure-Python collection of useful functions for 3D computer vision and graphics research"
readme = "README.md"
authors = [
{name = "EasternJournalist", email = "wangrc2081cs@mail.ustc.edu.cn"}
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"moderngl",
"numpy",
"scipy",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/EasternJournalist/utils3d"
[tool.setuptools.packages.find]
where = ["."]
include = ["utils3d*"]