-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.42 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mpxpy"
version = "0.0.20"
description = "Official Mathpix client for Python"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name="Nico Jimenez", email="nicodjimenez@mathpix.com" },
{ name="Matt Chang", email="mattchang@mathpix.com" },
{ name="Sangyub Lee", email="sangyub@mathpix.com" },
]
license = { file="LICENSE.txt" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.20.0",
"python-dotenv>=0.15.0",
"pydantic>=2.10.6",
]
keywords = ["mathpix", "mpx", "mpxpy", "py", "client", "ocr", "api", "sdk", "python","package", "development"]
# --- Project URLs (Links displayed on PyPI) ---
[project.urls]
Homepage = "https://github.com/Mathpix/mpxpy"
Repository = "https://github.com/Mathpix/mpxpy"
"Bug Tracker" = "https://github.com/Mathpix/mpxpy/issues"
[tool.setuptools.packages.find]
exclude = ["tests*"]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0"
]