-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (47 loc) · 1.25 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nPerlinNoise"
version = "0.1.4-alpha0"
description = "A robust open source implementation of Perlin Noise Algorithm for N-Dimensions"
readme = "docs/README_EMBED.md"
authors = [{ name = "Amith225", email = "[email protected]" }]
maintainers = [{ name = "Amith225", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
]
keywords = [
"perlin-noise",
"perlin",
"n-dimensional",
"numpy-perlin",
"numpy-noise",
"noise",
"noise-algorithm",
"performance"
]
dependencies = [
"numexpr>=2.8.3",
"numpy>=1.23.3",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"matplotlib>=3.6.1",
"plotly>=5.10.0",
"PyQt5>=5.15.7",
"PyQt5-stubs>=5.15.6.0",
"build>=0.8.0",
"twine>=4.0.1",
]
[project.urls]
homepage = "https://pypi.org/project/nPerlinNoise/"
repository = "https://github.com/Amith225/nPerlinNoise"
#documentation = "https://readthedocs.org/"
[project.scripts]
nPerlinNoise = "nPerlinNoise.__main__:main"