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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
name = "anysqlite"
dynamic = ["version"]
description = ''
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.8"
keywords = []
authors = [
{ name = "Karen Petrosyan", email = "kar.petrosyanpy@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"anyio>3.4.0"
]
[project.urls]
Issues = "https://github.com/karosis88/anysqlite/issues"
Source = "https://github.com/karosis88/anysqlite"
[tool.hatch.version]
path = "anysqlite/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/anysqlite",
"/CHANGELOG.md",
"/README.md",
]
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "README.md"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "CHANGELOG.md"
[tool.mypy]
strict = true
show_error_codes = true
warn_unused_ignores = false
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
check_untyped_defs = true
[tool.pytest.ini_options]
addopts = ["-rxXs", "--strict-config", "--strict-markers"]
filterwarnings = []
[tool.coverage.run]
omit = [
"venv/*",
]
include = ["anysqlite/*", "tests/*"]
[tool.coverage.report]
exclude_also = [
'__repr__',
'raise NotImplementedError()'
]
[tool.ruff]
line-length = 120
select = [
"E",
"F",
"W",
"I"
]
[tool.ruff.isort]
combine-as-imports = true
|