-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (85 loc) · 2.11 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "alzhazen"
dynamic = ["version"]
description = "A generative AI for scientific knowledge."
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name = "GullyBurns", email = "gully.burns@chanzuckerberg.com" },
]
keywords = [
"jupyter",
"nbdev",
"notebook",
"python",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"altair==5.3.0",
"beautifulsoup4==4.12.2",
"databricks-sql-connector",
"fastapi==0.109.1",
"huggingface_hub==0.22.1",
"ipywidgets",
"jmespath",
"langchain-google-vertexai==0.0.5",
"langchain-openai==0.0.8",
"langchain-groq==0.1.4",
"langchain==0.1.16",
"langserve==0.0.34",
"linkml==1.6.1",
"lxml==4.9.4",
"marimo==0.6.26",
"nbdev==2.3.12",
"numpy==1.26.0",
"nxml-2-txt@git+https://github.com/GullyBurns/nxml2txt",
"owlready2==0.45",
"pandas==2.1.1",
"psycopg2-binary==2.9.9",
"pgvector==0.2.4",
"pyalex==0.13",
"pyeda==0.29.0",
"pydantic==2.5.1",
"pymupdf==1.23.4",
"selenium==4.16.0",
"pymde==0.1.18",
"sentence_transformers==2.2.2",
"splinter==0.20.1",
"sqlalchemy==2.0.21",
"sse_starlette==1.8.2",
"torch==2.1.2",
"trafilatura==1.9.0",
"transformers==4.39.3",
]
[project.optional-dependencies]
dev = []
[project.scripts]
[project.entry-points.nbdev]
alhazen = "alhazen._modidx:d"
[project.urls]
Homepage = "https://github.com/chanzuckerberg/alhazen"
[template.licenses]
headers = true
default = [
"Apache-2.0",
]
[tool.hatch.version]
path = "alhazen/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["/alhazen",]
[tool.hatch.build.targets.wheel]
packages = ["alhazen"]
[tool.hatch.metadata]
allow-direct-references = true