-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
69 lines (58 loc) · 1.84 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
58
59
60
61
62
63
64
65
66
67
[project]
name = "langchain-google-cloud-sql-mysql"
dynamic = ["version"]
description = "LangChain integrations for Google Cloud SQL for MySQL"
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.9"
authors = [
{name = "Google LLC", email = "googleapis-packages@google.com"}
]
dependencies = [
"langchain-core>=0.1.1, <1.0.0",
"langchain-community>=0.0.18, <1.0.0",
"numpy>=1.24.4, <2.0.0",
"SQLAlchemy>=2.0.7, <3.0.0",
"cloud-sql-python-connector[pymysql]>=1.10.0, <2.0.0"
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.setuptools.dynamic]
version = {attr = "langchain_google_cloud_sql_mysql.version.__version__"}
[project.urls]
Homepage = "https://github.com/googleapis/langchain-google-cloud-sql-mysql-python"
Repository = "https://github.com/googleapis/langchain-google-cloud-sql-mysql-python.git"
"Bug Tracker" = "https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/issues"
Changelog = "https://github.com/googleapis/langchain-google-cloud-sql-mysql-python/blob/main/CHANGELOG.md"
[project.optional-dependencies]
test = [
"black[jupyter]==24.8.0",
"isort==5.13.2",
"mypy==1.11.2",
"pytest-asyncio==0.24.0",
"pytest==8.3.3",
"pytest-cov==5.0.0"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.9"
warn_unused_configs = true
exclude = [
'docs/*',
'noxfile.py'
]
[[tool.mypy.overrides]]
module="google.auth.*"
ignore_missing_imports = true