aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--poetry.lock33
-rw-r--r--pyproject.toml1
2 files changed, 33 insertions, 1 deletions
diff --git a/poetry.lock b/poetry.lock
index 3f31a03..64ec9f4 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -607,6 +607,23 @@ pyparsing = ">=2.3.1"
python-dateutil = ">=2.7"
[[package]]
+name = "mpmath"
+version = "1.3.0"
+description = "Python library for arbitrary-precision floating-point arithmetic"
+optional = false
+python-versions = "*"
+files = [
+ {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"},
+ {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"},
+]
+
+[package.extras]
+develop = ["codecov", "pycodestyle", "pytest (>=4.6)", "pytest-cov", "wheel"]
+docs = ["sphinx"]
+gmpy = ["gmpy2 (>=2.1.0a4)"]
+tests = ["pytest (>=4.6)"]
+
+[[package]]
name = "numpy"
version = "1.26.2"
description = "Fundamental package for array computing in Python"
@@ -1013,6 +1030,20 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""
full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"]
[[package]]
+name = "sympy"
+version = "1.12"
+description = "Computer algebra system (CAS) in Python"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "sympy-1.12-py3-none-any.whl", hash = "sha256:c3588cd4295d0c0f603d0f2ae780587e64e2efeedb3521e46b9bb1d08d184fa5"},
+ {file = "sympy-1.12.tar.gz", hash = "sha256:ebf595c8dac3e0fdc4152c51878b498396ec7f30e7a914d6071e674d49420fb8"},
+]
+
+[package.dependencies]
+mpmath = ">=0.19"
+
+[[package]]
name = "typing-extensions"
version = "4.9.0"
description = "Backported and Experimental Type Hints for Python 3.8+"
@@ -1088,4 +1119,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
[metadata]
lock-version = "2.0"
python-versions = ">=3.9,<4.0"
-content-hash = "a186ae05366ede38c746e8737d56ef65cc557e08c68ad32ee1f0859155ecbbf3"
+content-hash = "cd3ff1481de4c376686c450784b668cb514fda76d22a47300d041087b8ca9654"
diff --git a/pyproject.toml b/pyproject.toml
index 13c0a68..ac0ae12 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -14,6 +14,7 @@ numpy = "^1.26.2"
gunicorn = "^21.2.0"
fastapi = "^0.106.0"
uvicorn = "^0.25.0"
+sympy = "^1.12"
[build-system]