-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
57 lines (53 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "academic_metrics"
version = "1.0.98"
description = "A tool to extract and format academic data from Web of Science and Crossref"
authors = [
{ name = "Spencer Presley", email = "[email protected]" },
{ name = "Cole Barbes", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp==3.10.8",
"beautifulsoup4==4.12.3",
"langchain==0.3.7",
"langchain_anthropic==0.3.0",
"langchain_core==0.3.19",
"langchain_google_genai==2.0.5",
"langchain_openai==0.2.9",
"openai==1.58.1",
"pandas==2.2.3",
"pydantic==2.9.2",
"pylatexenc==2.10",
"pymongo==4.10.1",
"python-dotenv==1.0.1",
"selenium==4.26.1",
"Unidecode==1.3.8",
"platformdirs==4.3.6",
"webdriver_manager==4.0.2",
"lxml==5.3.0",
"openpyxl==3.1.5",
]
[project.optional-dependencies]
docs = [
"sphinx",
"piccolo-theme",
"sphinx-autodoc-typehints",
"pydata-sphinx-theme",
]
[project.urls]
"Homepage" = "https://github.com/SpencerPresley/COSC425-DATA"
"Bug Tracker" = "https://github.com/SpencerPresley/COSC425-DATA/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["academic_metrics*"]
namespaces = false