2021-08-24 13:20:54 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "sqlmodel"
|
|
|
|
version = "0"
|
|
|
|
description = "SQLModel, SQL databases in Python, designed for simplicity, compatibility, and robustness."
|
|
|
|
authors = ["Sebastián Ramírez <tiangolo@gmail.com>"]
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/tiangolo/sqlmodel"
|
|
|
|
documentation = "https://sqlmodel.tiangolo.com"
|
|
|
|
repository = "https://github.com/tiangolo/sqlmodel"
|
|
|
|
license = "MIT"
|
|
|
|
exclude = ["sqlmodel/sql/expression.py.jinja2"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Framework :: AsyncIO",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2023-07-29 10:32:47 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2023-03-31 10:59:56 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2021-08-24 13:20:54 +00:00
|
|
|
"Topic :: Database",
|
|
|
|
"Topic :: Database :: Database Engines/Servers",
|
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
"Typing :: Typed",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-07-29 10:32:47 +00:00
|
|
|
python = "^3.7"
|
2023-04-30 15:32:27 +00:00
|
|
|
SQLAlchemy = ">=2.0.0,<=2.0.11"
|
2021-08-24 13:20:54 +00:00
|
|
|
pydantic = "^1.8.2"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-11-04 20:44:02 +00:00
|
|
|
pytest = "^7.0.1"
|
2022-11-04 21:14:11 +00:00
|
|
|
mypy = "0.971"
|
2022-11-04 20:59:26 +00:00
|
|
|
flake8 = "^5.0.4"
|
2023-07-29 10:32:47 +00:00
|
|
|
black = "^22.10.0"
|
2021-08-24 13:20:54 +00:00
|
|
|
mkdocs = "^1.2.1"
|
2022-01-08 16:49:07 +00:00
|
|
|
mkdocs-material = "^8.1.4"
|
2023-07-29 10:32:47 +00:00
|
|
|
pillow = "^9.3.0"
|
|
|
|
cairosvg = "^2.5.2"
|
2021-08-24 13:20:54 +00:00
|
|
|
mdx-include = "^1.4.1"
|
2022-11-04 21:13:58 +00:00
|
|
|
coverage = {extras = ["toml"], version = "^6.2"}
|
2022-08-27 20:20:05 +00:00
|
|
|
fastapi = "^0.68.1"
|
2021-08-24 13:20:54 +00:00
|
|
|
requests = "^2.26.0"
|
2021-08-24 14:02:21 +00:00
|
|
|
autoflake = "^1.4"
|
2021-08-24 18:14:33 +00:00
|
|
|
isort = "^5.9.3"
|
2023-03-31 10:59:56 +00:00
|
|
|
async_generator = {version = "*", python = "~3.7"}
|
|
|
|
async-exit-stack = {version = "*", python = "~3.7"}
|
2021-08-24 13:20:54 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry-version-plugin]
|
|
|
|
source = "init"
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
parallel = true
|
|
|
|
source = [
|
|
|
|
"docs_src",
|
|
|
|
"tests",
|
|
|
|
"sqlmodel"
|
|
|
|
]
|
2022-11-04 22:01:37 +00:00
|
|
|
context = '${CONTEXT}'
|
2021-08-24 13:20:54 +00:00
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
exclude_lines = [
|
|
|
|
"pragma: no cover",
|
|
|
|
"@overload",
|
|
|
|
'if __name__ == "__main__":',
|
|
|
|
"if TYPE_CHECKING:",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
known_third_party = ["sqlmodel"]
|
|
|
|
skip_glob = [
|
|
|
|
"sqlmodel/__init__.py",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
# --strict
|
|
|
|
disallow_any_generics = true
|
|
|
|
disallow_subclassing_any = true
|
|
|
|
disallow_untyped_calls = true
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
disallow_incomplete_defs = true
|
|
|
|
check_untyped_defs = true
|
|
|
|
disallow_untyped_decorators = true
|
|
|
|
no_implicit_optional = true
|
|
|
|
warn_redundant_casts = true
|
|
|
|
warn_unused_ignores = true
|
|
|
|
warn_return_any = true
|
|
|
|
implicit_reexport = false
|
|
|
|
strict_equality = true
|
|
|
|
# --strict end
|
2021-11-30 16:12:28 +00:00
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "sqlmodel.sql.expression"
|
|
|
|
warn_unused_ignores = false
|
2022-08-27 20:08:25 +00:00
|
|
|
|
|
|
|
# invalidate CI cache: 1
|