-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 902 Bytes
/
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
[tool.poetry]
name = "webtext"
version = "0.1.0"
description = "Uniform web text processing"
authors = ["Hannes Moser <[email protected]>"]
repository = "https://github.com/eliias/webtext"
license = "MIT"
readme = "README.md"
keywords = ["nlp", "llm", "text processing"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.12"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.2"
[tool.poetry.group.test]
optional = true
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"