-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (70 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
75 lines (70 loc) · 2.17 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
[tool.poetry]
name = "TELF"
version = "0.0.44"
description = "T-ELF is one of the machine learning software packages developed as part of the R&D 100 winning SmartTensors AI project at Los Alamos National Laboratory (LANL). T-ELF presents an array of customizable software solutions crafted for analysis of datasets. Acting as a comprehensive toolbox, T-ELF specializes in data pre-processing, extraction of latent features, and structuring results to facilitate informed decision-making. Leveraging high-performance computing and cutting-edge GPU architectures, our toolbox is optimized for analyzing large datasets from diverse set of problems."
authors = ["Maksim E. Eren"]
license = "BST-3"
readme = "README.md"
# Explicitly tell Poetry where to find the Python package
packages = [
{ include = "TELF" },
{ include = "post_install" }
]
[tool.poetry.dependencies]
python = "3.11.10"
numpy = "1.26.4"
scipy = "^1.14.1"
matplotlib = "^3.9.2"
pathos = "^0.3.3"
psutil = "^6.0.0"
treelib = "^1.7.0"
tqdm = "^4.66.5"
gputil = "^1.4.0"
pytest = "^8.3.3"
scikit-learn = "^1.5.2"
sparse = "^0.15.4"
h5py = "^3.12.1"
pandas = "^2.2.3"
nltk = "^3.9.1"
joblib = "^1.4.2"
networkx = "^3.4.1"
spacy = "^3.8.2"
mat73 = "^0.65"
spacy-transformers = "^1.3.5"
rapidfuzz = "^3.10.0"
plotly = ">=6.1.1"
kaleido = "^1.1.0"
wordcloud = "^1.9.4"
httpx = "^0.28.1"
xmltodict = "^0.14.2"
rbloom = "^1.5.2"
pymongo = "^4.11.2"
seaborn = "^0.13.2"
umap-learn = "^0.5.7"
torch = ">=2.2,<2.3"
transformers = ">=4.39,<5"
langchain-ollama = "^0.3.0"
openai = "^1.69.0"
pyvis = "^0.3.2"
langchain-community = "^0.3.24"
langchain-openai = "^0.3.21"
streamlit = "^1.42.2"
streamlit-tree-select = "^0.0.5"
watchdog = "^6.0.0"
pillow = "^11.1.0"
pykeen = "^1.11.0"
pycountry = "^24.6.1"
neo4j = "^5.26.0"
pymilvus = "2.4.0"
jupyterlab = "^4.2.5"
notebook = "^7.2.2"
ipywidgets = "^8.1.5"
opensearch-py = "^3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
telf-post-install = "post_install:main"
telf-install-chrome = "post_install:install_chrome_cli"
telf-archive = "post_install.archiver:main"
telf-version = "post_install.version_bump:main"