Spaces:
Sleeping
Sleeping
File size: 2,684 Bytes
91eaff6 |
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 69.0",
"setuptools_scm[toml] >= 6.2",
"wheel >= 0.42",
]
[tool.setuptools]
packages = [ "textgraphs" ]
[tool.setuptools_scm]
# required section; empty contents is fine
[project.urls]
home = "https://huggingface.co/spaces/DerwenAI/textgraphs"
docs = "https://derwen.ai/docs/txg/"
code = "https://github.com/DerwenAI/textgraphs"
PyPi = "https://pypi.org/project/textgraphs/"
DOI = "https://zenodo.org/doi/10.5281/zenodo.10431783"
[project]
name = "textgraphs"
dynamic = ["version"]
authors = [
{ name = "derwen.ai", email = "[email protected]" },
]
description = "TextGraphs + LLMs + graph ML for entity extraction, linking, ranking, and constructing a lemma graph"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Indexing",
"Topic :: Text Processing :: Linguistic",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"beautifulsoup4 >= 4.12",
"GitPython >= 3.1",
"icecream >= 2.1",
"markdown2 >= 2.4",
"matplotlib >= 3.8",
"networkx >= 3.2",
"open-nre >= 0.1.1",
"pulp >= 2.7",
"pyinstrument >= 4.6",
"pyvis >= 0.3",
"qwikidata >= 0.4",
"rdflib >= 7.0",
"spacy >= 3.7",
"spacy-dbpedia-spotlight >= 0.2.6",
"span_marker >= 1.5",
"transformers >= 4.35",
"wordcloud >= 1.9",
]
[project.optional-dependencies]
dev = [
"build >= 1.0",
"Flask >= 3.0",
"mkdocs-git-revision-date-plugin >= 0.3",
"mkdocs-material >= 9.5",
"mknotebooks >= 0.8",
"pre-commit >= 3.5",
"selenium >= 4.16",
"twine >= 4.0",
]
test = [
"pytest >= 7.4",
"deepdiff >= 6.7",
]
demo = [
"ipywidgets >= 8.1",
"jupyterlab_execute_time >= 3.1",
"jupyterlab >= 4.0",
"kuzu >= 0.1",
"sense2vec >= 2.0",
"spacy-entity-linker >= 1.0",
"streamlit < 1.29",
"watermark >= 2.4",
]
|