-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.55 KB
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
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "halo"
version = "0.1.0"
description = "A terminal flow field screensaver - Perlin noise × Braille × 24-bit color"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "halo contributors" }]
keywords = [
"terminal", "screensaver", "flow-field",
"perlin-noise", "braille", "ansi", "ascii-art", "cli",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Terminals",
"Topic :: Artistic Software",
]
requires-python = ">=3.10"
dependencies = ["numpy>=1.24"]
[project.scripts]
halo = "halo.main:main"
[project.urls]
Homepage = "https://github.com/programmersd21/halo"
Repository = "https://github.com/programmersd21/halo"
Issues = "https://github.com/programmersd21/halo/issues"
[tool.hatch.build.targets.wheel]
packages = ["halo"]
[tool.hatch.version]
path = "halo/__init__.py"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]