forked from cpederkoff/stl-to-voxel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 915 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 = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "stl-to-voxel"
packages = [
{ include = "stltovoxel" },
]
version = "v0.0.0"
description = "Turn STL files into voxels, images, and videos"
readme = "README.md"
authors = ["Christian Pederkoff"]
license = "MIT"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ['numpy', 'Pillow', 'matplotlib', 'numpy-stl']
repository = "https://github.com/cpederkoff/stl-to-voxel"
[tool.poetry.dependencies]
python = "^3.8"
matplotlib = "^3.6"
numpy = "^1.13"
Pillow = ">=10.0.1"
numpy-stl = "^2.17"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
pep8-naming = "^0.13.2"
[tool.poetry.scripts]
stltovoxel = "stltovoxel.__main__:main"