mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
86 lines
2.2 KiB
TOML
86 lines
2.2 KiB
TOML
[project]
|
|
name = "sqlite-utils"
|
|
version = "4.0rc2"
|
|
description = "CLI tool and Python library for manipulating SQLite databases"
|
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
authors = [
|
|
{ name = "Simon Willison" },
|
|
]
|
|
license = "Apache-2.0"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Intended Audience :: Science/Research",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Topic :: Database",
|
|
]
|
|
|
|
dependencies = [
|
|
"click>=8.3.1",
|
|
"click-default-group>=1.2.3",
|
|
"pluggy",
|
|
"python-dateutil",
|
|
"sqlite-fts4",
|
|
"tabulate",
|
|
"pip",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"black>=26.3.1",
|
|
"click>=8.4.2",
|
|
"cogapp",
|
|
"hypothesis",
|
|
"pytest",
|
|
# mypy
|
|
"data-science-types",
|
|
"mypy",
|
|
"types-click",
|
|
"types-pluggy",
|
|
"types-python-dateutil",
|
|
"types-tabulate",
|
|
# flake8
|
|
"flake8",
|
|
"flake8-pyproject",
|
|
"ty>=0.0.37",
|
|
# For stable cog:
|
|
"tabulate>=0.10.0",
|
|
]
|
|
docs = [
|
|
"beanbag-docutils>=2.0",
|
|
"codespell",
|
|
"furo",
|
|
"pygments-csv-lexer",
|
|
"sphinx-autobuild",
|
|
"sphinx-copybutton",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/simonw/sqlite-utils"
|
|
Documentation = "https://sqlite-utils.datasette.io/en/stable/"
|
|
Changelog = "https://sqlite-utils.datasette.io/en/stable/changelog.html"
|
|
Issues = "https://github.com/simonw/sqlite-utils/issues"
|
|
CI = "https://github.com/simonw/sqlite-utils/actions"
|
|
|
|
[project.scripts]
|
|
sqlite-utils = "sqlite_utils.cli:cli"
|
|
|
|
[build-system]
|
|
# setuptools 77+ is needed for the PEP 639 license = "Apache-2.0" expression
|
|
requires = ["setuptools>=77"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.flake8]
|
|
max-line-length = 160
|
|
# Black compatibility, E203 whitespace before ':':
|
|
extend-ignore = ["E203"]
|
|
extend-exclude = [".venv", "build", "dist", "docs", "sqlite_utils.egg-info"]
|
|
|
|
[tool.setuptools.package-data]
|
|
sqlite_utils = ["py.typed"]
|