File size: 814 Bytes
2f5e0ac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "utils3d"
version = "0.0.2"
description = "A small package for 3D graphics"
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",
    "plyfile",
    "scipy"
]
requires-python = ">=3.7"

[project.urls]
Homepage = "https://github.com/EasternJournalist/utils3d"

[tool.setuptools.packages.find]
where = ["."]
include = ["utils3d*"]

[tool.setuptools.package-data]
"utils3d.numpy.shaders" = ["*"]