Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.1.3 to 7.2.0. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/7.1.3...7.2.0) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
167 lines
4.2 KiB
TOML
167 lines
4.2 KiB
TOML
[project]
|
|
name = "ormar"
|
|
|
|
[tool.poetry]
|
|
name = "ormar"
|
|
version = "0.12.0"
|
|
description = "A simple async ORM with fastapi in mind and pydantic validation."
|
|
authors = ["Radosław Drążkiewicz <collerek@gmail.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/collerek/ormar"
|
|
repository = "https://github.com/collerek/ormar"
|
|
documentation = "https://collerek.github.io/ormar/"
|
|
packages = [
|
|
{ include="ormar" }
|
|
]
|
|
keywords = [
|
|
"orm",
|
|
"sqlalchemy",
|
|
"fastapi",
|
|
"pydantic",
|
|
"databases",
|
|
"async",
|
|
"alembic",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Web Environment",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Framework :: AsyncIO",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7.0"
|
|
databases = ">=0.3.2,!=0.5.0,!=0.5.1,!=0.5.2,!=0.5.3,<0.6.2"
|
|
pydantic = ">=1.6.1,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<1.10.3"
|
|
SQLAlchemy = ">=1.3.18,<1.4.42"
|
|
cryptography = { version = ">=35,<39", optional = true }
|
|
# Async database drivers
|
|
aiosqlite = { version = "^0.17.0", optional = true }
|
|
aiomysql = { version = ">=0.1.0", optional = true }
|
|
aiopg = { version = "^1.3.3", optional = true }
|
|
asyncpg = { version = ">=0.24,<0.27", optional = true }
|
|
# Sync database drivers for standard tooling around setup/teardown/migrations.
|
|
psycopg2-binary = { version = "^2.9.1", optional = true }
|
|
mysqlclient = { version = "^2.1.0", optional = true }
|
|
PyMySQL = { version = ">=0.9", optional = true }
|
|
|
|
[tool.poetry.dependencies.orjson]
|
|
version = ">=3.6.4"
|
|
optional = true
|
|
|
|
[tool.poetry.dependencies.typing-extensions]
|
|
version = ">=3.7,<=5.0"
|
|
python = "<3.8"
|
|
|
|
[tool.poetry.dependencies.importlib-metadata]
|
|
version = ">=3.1"
|
|
python = "<3.8"
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
# Testing
|
|
pytest = "^7.2.0"
|
|
pytest-cov = "^4.0.0"
|
|
codecov = "^2.1.12"
|
|
pytest-asyncio = "^0.20.1"
|
|
fastapi = ">=0.70.1,<0.86"
|
|
flake8 = "^3.9.2"
|
|
flake8-black = "^0.3.3"
|
|
flake8-bugbear = "^22.10.25"
|
|
flake8-import-order = "^0.18.1"
|
|
flake8-bandit = "^3.0.0"
|
|
flake8-builtins = "^2.0.0"
|
|
flake8-variables-names = "^0.0.5"
|
|
flake8-cognitive-complexity = "^0.1.0"
|
|
flake8-functions = "^0.0.7"
|
|
flake8-expression-complexity = "^0.0.11"
|
|
|
|
# types
|
|
mypy = "^0.982"
|
|
types-ujson = "^5.5.0"
|
|
types-PyMySQL = "^1.0.19"
|
|
types-ipaddress = "^1.0.1"
|
|
types-enum34 = "^1.1.1"
|
|
types-cryptography = "^3.3.23"
|
|
types-orjson = "^3.6.1"
|
|
types-aiofiles = "^22.1.0"
|
|
types-pkg-resources = "^0.1.3"
|
|
types-requests = "^2.28.11"
|
|
types-toml = "^0.10.8"
|
|
|
|
# Documantation
|
|
mkdocs = "^1.4.1"
|
|
mkdocs-material = ">=8.1.2,<8.6"
|
|
mkdocs-material-extensions = "^1.1"
|
|
mkdocstrings = {version = "==0.19.0", extras = ["python"]}
|
|
mkdocs-gen-files = "^0.4.0"
|
|
mkdocs-literate-nav = "^0.5.0"
|
|
mkdocs-section-index = "^0.3.4"
|
|
dataclasses = { version = ">=0.6.0,<0.8 || >0.8,<1.0.0" }
|
|
|
|
# Performance testing
|
|
yappi = "^1.3.6"
|
|
|
|
pre-commit = "^2.20.0"
|
|
|
|
[tool.poetry.extras]
|
|
postgresql = ["asyncpg", "psycopg2-binary"]
|
|
postgres = ["asyncpg", "psycopg2-binary"]
|
|
aiopg = ["aiopg", "psycopg2-binary"]
|
|
mysql = ["aiomysql", "PyMySQL"]
|
|
sqlite = ["aiosqlite"]
|
|
orjson = ["orjson"]
|
|
crypto = ["cryptography"]
|
|
all = [
|
|
"aiosqlite",
|
|
"asyncpg",
|
|
"aiopg",
|
|
"psycopg2-binary",
|
|
"aiomysql",
|
|
"mysqlclient",
|
|
"PyMySQL",
|
|
"orjson",
|
|
"cryptography",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.mypy]
|
|
# TODO: Enable mypy plugin after pydantic release supporting toml file
|
|
disallow_untyped_calls = true
|
|
disallow_untyped_defs = true
|
|
disallow_incomplete_defs = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "tests.*"
|
|
disallow_untyped_calls = false
|
|
disallow_untyped_defs = false
|
|
disallow_incomplete_defs = false
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "docs_src.*"
|
|
ignore_errors = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = ["sqlalchemy.*", "asyncpg"]
|
|
ignore_missing_imports = true
|
|
|
|
[tool.yapf]
|
|
based_on_style = "pep8"
|
|
disable_ending_comma_heuristic = true
|
|
split_arguments_when_comma_terminated = true
|
|
|