-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (29 loc) · 1.07 KB
/
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
[project]
name = "SuperDeadLeaves"
version = "0.0.1"
authors = [
{name="Andreu Badal", email="[email protected]"},
]
description = """
Extension of the texture reproduction fidelity chart Dead Leaves using the _superformula_ to generate a variety of random shapes resembling leaves with multiple lobes.
The superformula parameters are randomly sampled in each lobe to generate an organic-looking shape. The final shape is rotated in a random orientation.
The superformula is a generalization of the superellipse that can generate a wide variety of geometric shapes:
- Johan Gielis. "A generic geometric transformation that unifies a wide range of natural and abstract shapes." American journal of botany 90, p. 333-338 (2003)
"""
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"numpy",
"pillow",
"matplotlib",
"scipy"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]