-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 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
[project]
name = "aisaac"
version = "0.1.0"
description = "AI that reads an entire scientific field and finds connections humans miss"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "Jash"},
]
keywords = ["quantum-gravity", "scientific-discovery", "cross-theory", "formula-extraction", "LLM"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"sympy>=1.12",
"numpy>=1.26.0",
"scipy>=1.12.0",
"arxiv>=2.1.0",
"PyPDF2>=3.0.0",
"pylatexenc>=2.10",
"requests>=2.31.0",
"scikit-learn>=1.4.0",
"matplotlib>=3.8.0",
"networkx>=3.2.0",
"rich>=13.7.0",
"tqdm>=4.66.0",
"pyyaml>=6.0.0",
"hdbscan>=0.8.33",
]
[project.optional-dependencies]
api = ["anthropic>=0.39.0"]
semantic = ["sentence-transformers>=2.3.0", "umap-learn>=0.5.0"]
all = ["anthropic>=0.39.0", "sentence-transformers>=2.3.0", "umap-learn>=0.5.0"]
[project.urls]
Homepage = "https://github.com/c0mpli/aisaac"
Repository = "https://github.com/c0mpli/aisaac"
Issues = "https://github.com/c0mpli/aisaac/issues"
[project.scripts]
aisaac = "aisaac.pipeline.aisaac:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["aisaac*"]