|
| 1 | +[project] |
| 2 | +name = "sqlite-utils" |
| 3 | +version = "4.0a0" |
| 4 | +description = "CLI tool and Python library for manipulating SQLite databases" |
| 5 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 6 | +authors = [ |
| 7 | + { name = "Simon Willison" }, |
| 8 | +] |
| 9 | +license = "Apache-2.0" |
| 10 | +requires-python = ">=3.10" |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 5 - Production/Stable", |
| 13 | + "Intended Audience :: Developers", |
| 14 | + "Intended Audience :: End Users/Desktop", |
| 15 | + "Intended Audience :: Science/Research", |
| 16 | + "Programming Language :: Python :: 3.10", |
| 17 | + "Programming Language :: Python :: 3.11", |
| 18 | + "Programming Language :: Python :: 3.12", |
| 19 | + "Programming Language :: Python :: 3.13", |
| 20 | + "Programming Language :: Python :: 3.14", |
| 21 | + "Topic :: Database", |
| 22 | +] |
| 23 | + |
| 24 | +dependencies = [ |
| 25 | + "click", |
| 26 | + "click-default-group>=1.2.3", |
| 27 | + "pluggy", |
| 28 | + "python-dateutil", |
| 29 | + "sqlite-fts4", |
| 30 | + "tabulate", |
| 31 | +] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Homepage = "https://github.com/simonw/sqlite-utils" |
| 35 | +Documentation = "https://sqlite-utils.datasette.io/en/stable/" |
| 36 | +Changelog = "https://sqlite-utils.datasette.io/en/stable/changelog.html" |
| 37 | +Issues = "https://github.com/simonw/sqlite-utils/issues" |
| 38 | +CI = "https://github.com/simonw/sqlite-utils/actions" |
| 39 | + |
| 40 | +[project.scripts] |
| 41 | +sqlite-utils = "sqlite_utils.cli:cli" |
| 42 | + |
| 43 | +[project.optional-dependencies] |
| 44 | +test = [ |
| 45 | + "black>=24.1.1", |
| 46 | + "cogapp", |
| 47 | + "hypothesis", |
| 48 | + "pytest", |
| 49 | +] |
| 50 | +docs = [ |
| 51 | + "beanbag-docutils>=2.0", |
| 52 | + "codespell", |
| 53 | + "furo", |
| 54 | + "pygments-csv-lexer", |
| 55 | + "sphinx-autobuild", |
| 56 | + "sphinx-copybutton", |
| 57 | +] |
| 58 | +mypy = [ |
| 59 | + "data-science-types", |
| 60 | + "mypy", |
| 61 | + "types-click", |
| 62 | + "types-pluggy", |
| 63 | + "types-python-dateutil", |
| 64 | + "types-tabulate", |
| 65 | +] |
| 66 | +flake8 = [ |
| 67 | + "flake8", |
| 68 | + "flake8-pyproject", |
| 69 | +] |
| 70 | + |
| 71 | +[build-system] |
| 72 | +requires = ["setuptools"] |
| 73 | +build-backend = "setuptools.build_meta" |
| 74 | + |
| 75 | +[tool.flake8] |
| 76 | +max-line-length = 160 |
| 77 | +# Black compatibility, E203 whitespace before ':': |
| 78 | +extend-ignore = ["E203"] |
| 79 | + |
| 80 | +[tool.setuptools.package-data] |
| 81 | +sqlite_utils = ["py.typed"] |
0 commit comments