-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.05 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
[build-system]
requires = ["setuptools", "setuptools-scm", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "Fast-Perlin-Noise"
authors = [
{name = "Joshua Riefman", email = "[email protected]"}
]
maintainers = [
{name = "Joshua Riefman", email = "[email protected]"}
]
description = "A fast Perlin noise generation library!"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["perlin-noise", "noise", "go"]
license = { file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"matplotlib~=3.7.2",
"numpy~=1.25.2",
"tqdm",
"strenum"
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/joshuaRiefman/perlinNoise"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools]
packages = ["fast_perlin_noise"]
[project.scripts]
mount_perlin_noise = "fast_perlin_noise.PerlinNoise:_mount"
test_perlin_noise = "fast_perlin_noise.PerlinNoise:test"