-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 810 Bytes
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
[project]
name = "equation-scraper"
version = "1.0.0"
authors = [
{ name="Chad Williams", email="chad_williams@brown.edu" },
]
description = "This package scrapes Wikipedia for equations, parses the equations, and builds priors of operations and functions."
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"beautifulsoup4~=4.11.2",
"requests~=2.28.2",
"sympy~=1.11.1",
"antlr4-python3-runtime==4.10",
"equation-tree~=0.0.25",
"matplotlib~=3.6.3",
"numpy~=1.24.2",
"tqdm~=4.65.0",
]
[project.urls]
"Homepage" = "https://musslick.github.io/AER_website/Research.html"
"Repository" = "https://github.com/AutoResearch/equation-scraper"
"Documentation" = "https://autoresearch.github.io/equation-scraper/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"