-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
42 lines (39 loc) · 1.3 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
[tool.poetry]
name = "hebrew"
version = "0.8.1"
description = "A python package with methods to handle the complexities of Hebrew text, calculate Gematria, and more."
authors = ["Avi Perl <avi@aviperl.me>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/avi-perl/hebrew"
documentation = "https://hebrew.aviperl.me/"
keywords = ["hebrew", "gematria", "grapheme", "ivrit", "yiddish", "taamim", "ta'amim", "kabbalah"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8.0"
grapheme = "^0.6.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.2"
black = "^24.4.2"
coverage = "^7.6.0"
pytest-cov = "^5.0.0"
toml = "^0.10.2"
mkdocs-material = "^9.5.30"
mdx-include = "^1.4.2"
mkdocstrings = {extras = ["python"], version = "^0.25.2"}
pytest-codeblocks = "^0.17.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"