-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.08 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
[project]
name = "urbabel"
authors = [{name = "PTA"}]
version = "0.0.2"
description = "a Python version of Library of Babel with limited multi-language input support"
readme = "README.md"
license = "AGPL-3.0-or-later"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
]
requires-python = ">= 3.14"
dependencies = [
"gmpy2",
"pyicu",
]
[project.optional-dependencies]
dev = [
"coverage",
"ruff",
"zuban",
"nuitka[all]",
]
png = ["pillow"]
pdf = ["fpdf2"]
tui = ["textual"]
webui = ["nicegui"]
[project.urls]
Repository = "https://github.com/phineas-pta/library-babel"
[tool.coverage.run]
omit = ["urbabel/*i.py"]
[tool.ruff.format]
indent-style = "tab"
[tool.ruff.lint]
allowed-confusables = ["×", "’"]