This repository was archived by the owner on Mar 26, 2026. It is now read-only.
forked from hyperquest-hq/hyperbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 1.6 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
[project]
name = "graphbrain"
dynamic = ["version"]
description = "Semantic Hypergraph Tools"
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 = [
"asciitree",
"ipython",
"mwparserfromhell",
"networkx",
# fixed for now because of spacy
"numpy", # ==1.26.4',
"progressbar2",
"scikit-learn",
"spacy",
"spacy-transformers",
"termcolor",
"thinc",
"torch",
"trafilatura",
]
[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",
"Sphinx",
"sphinx_rtd_theme",
]
[project.urls]
Homepage = "https://graphbrain.net"
[project.scripts]
graphbrain = "graphbrain.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "VERSION"
pattern = "(?P<version>.+)"
[tool.hatch.build.targets.wheel]
packages = ["src/graphbrain"]
[tool.mypy]
strict = true
[tool.ruff]
target-version = "py310"