-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (71 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
83 lines (71 loc) · 1.96 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
75
76
77
78
79
80
81
82
83
[project]
name = "hyperbase"
dynamic = ["version"]
description = "A foundational library for Semantic Hypergraphs"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Telmo Menezes et al.", email = "telmo@telmomenezes.net" },
]
keywords = [
"NLP",
"AI",
"Knowledge Representation",
"Knowledge Systems",
"Natural Language Understanding",
"Text Analysis",
"Cognition",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"tqdm>=4.65.0",
"prompt-toolkit>=3.0.0",
"rich>=13.0.0",
"mwparserfromhell>=0.7.2",
"trafilatura>=2.0.0",
]
[project.scripts]
hyperbase = "hyperbase.cli:main"
[project.optional-dependencies]
dev = [
"mypy>=1.8.0",
"ruff>=0.2.2",
"pre-commit>=3.6.2",
"types-passlib>=1.7.7.20240106",
"coverage>=7.4.3",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.24",
"click==8.2.1", # pinned to prevent bug with mkdocs reload on change
"pytest>=9.0.0",
]
[project.urls]
Homepage = "https://hyperquest.ai/hyperbase"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "VERSION"
pattern = "(?P<version>.+)"
[tool.hatch.build.targets.wheel]
packages = ["src/hyperbase"]
[tool.mypy]
strict = true
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "RUF", "Q", "C4", "PT", "N", "ANN"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ANN001", "ANN003", "ANN201", "ANN202", "ANN204", "ANN205", "D100", "D101", "D102", "D400", "D415", "E501", "N802", "PT011"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"
[tool.ruff.format]
quote-style = "double"