-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 838 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 838 Bytes
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
[project]
name = "phaistos-disc"
version = "0.1.0"
description = "Python library to aid in the decipherment of the Phaistos Disc"
readme = "README.md"
authors = [{ name = "bob", email = "robertwalks@gmail.com" }]
requires-python = ">=3.12"
dependencies = ["polars>=1.31.0"]
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3.12",
"Topic :: Text Processing :: Linguistic",
]
[project.urls]
Homepage = "https://github.com/hp4k1h5/phaistos-disc/"
Repository = "https://github.com/hp4k1h5/phaistos-disc/"
[dependency-groups]
extras = ["cltk>=1.3.0"]
dev = ["pre-commit>=4.2.0", "pytest>=8.4.1", "ruff>=0.12.4", "ty>=0.0.1a15"]
[build-system]
requires = ["uv_build>=0.8.0,<0.9.0"]
build-backend = "uv_build"
[tool.ruff]
line-length = 79
# Enable the isort rules.
extend-select = ["I"]