-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (99 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
109 lines (99 loc) · 2.35 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[project]
name = "complexitty"
version = "1.1.0"
description = "A simple Mandelbrot Set explorer for the terminal"
authors = [
{ name = "Dave Pearson", email = "[email protected]" }
]
dependencies = [
"textual>=3.7.0",
"textual-enhanced>=0.13.0",
"textual-canvas>=0.3.0",
"xdg-base-dirs>=6.0.2",
]
readme = "README.md"
requires-python = ">= 3.12"
license = "GPL-3.0-or-later"
keywords = [
"terminal",
"tui",
"chui",
"mandelbrot",
"fractal",
"maths",
]
classifiers = [
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Education",
"Topic :: Games/Entertainment",
"Topic :: Terminals",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://complexitty.davep.dev/"
Repository = "https://github.com/davep/complexitty"
Documentation = "https://complexitty.davep.dev/"
Source = "https://github.com/davep/complexitty"
Issues = "https://github.com/davep/complexitty/issues"
Discussions = "https://github.com/davep/complexitty/discussions"
[project.optional-dependencies]
faster = [
"numba>=0.59.0",
]
[project.scripts]
complexitty = "complexitty.__main__:main"
[build-system]
requires = ["uv_build>=0.9.4"]
build-backend = "uv_build"
[tool.uv]
managed = true
[dependency-groups]
dev = [
"pre-commit>=4.2.0",
"codespell>=2.4.1",
"mypy>=1.15.0",
"textual-dev>=1.7.0",
"mkdocs-material>=9.6.12",
"markdown-exec>=1.10.3",
"ruff>=0.12.9",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.pyright]
venvPath="."
venv=".venv"
exclude=[".venv"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
# I think try...expect...pass reads far better.
"SIM105",
]
[tool.ruff.lint.pycodestyle]
max-line-length = 120