Skip to content

Commit

Permalink
Add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmazzola committed Mar 3, 2024
1 parent 71bbf03 commit 4402408
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
[project]
name = "MathVista"
version = "1.0"
requires-python = ">= 3.9"
readme = "README.md"

[project.urls]
"Homepage" = "https://mathvista.github.io/"
"Bug Tracker" = "https://github.com/lupantech/MathVista/issues"

[tool.black]
line-length = 120
skip-string-normalization = true

[tool.setuptools.packages.find]
exclude = [
"assets*",
"data*",
"_results*",
"results*",
"scripts*",
"jupyter_notebook_demos*",
]

[tool.wheel]
exclude = [
"assets*",
"data*",
"_results*",
"results*",
"scripts*",
"jupyter_notebook_demos*",
]

[tool.pyright]
exclude = [
"assets*",
"data*",
"_results*",
"results*",
"scripts*",
"jupyter_notebook_demos*",
]

0 comments on commit 4402408

Please sign in to comment.