-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (64 loc) · 1.8 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lltk-dh"
version = "0.10.0"
description = "Literary Language Toolkit (LLTK): corpora, models, and tools for the digital humanities"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "Ryan Heuser", email = "rj416@cam.ac.uk"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Linguistic",
]
dynamic = ["dependencies"]
[project.optional-dependencies]
analysis = ["scipy>=1.9", "scikit-learn>=1.0", "statsmodels>=0.13"]
clickhouse = ["clickhouse-connect>=0.7"]
embeddings = ["sentence-transformers>=2.2", "torch>=2.0"]
llm = ["largeliterarymodels"]
web = ["fastapi>=0.100", "uvicorn[standard]>=0.20"]
matching = ["datasketch>=1.5", "recordlinkage>=0.14"]
plotting = ["plotnine>=0.10"]
corpora = [
"internetarchive",
"rispy",
"wptools",
"geopy",
]
legacy = ["duckdb>=0.8"]
all = ["lltk-dh[analysis,clickhouse,embeddings,web,matching,plotting,corpora]"]
[project.urls]
Homepage = "https://github.com/quadrismegistus/lltk"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
include = ["lltk*"]
[project.scripts]
lltk = "lltk.cli:main"
[tool.setuptools]
include-package-data = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["lltk", "tests"]
omit = [
"*/lltk/corpus/*/*.py",
"*/lltk/web/*",
"*/lltk/model/booknlp.py",
"*/lltk/model/networks.py",
"*/lltk/model/classifier.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__",
"raise NotImplementedError",
]