-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.89 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sqlalchemy-searchable"
dynamic = ["version"]
description = "Provides fulltext search capabilities for declarative SQLAlchemy models."
readme = "README.rst"
license = "bsd-3-clause"
requires-python = ">=3.10"
authors = [
{ name = "Konsta Vesterinen", email = "konsta@fastmonkeys.com" },
]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"SQLAlchemy-Utils>=0.40.0",
"SQLAlchemy>=2.0",
]
[project.urls]
Code = "https://github.com/falcony-io/sqlalchemy-searchable"
Documentation = "https://sqlalchemy-searchable.readthedocs.io/"
"Issue Tracker" = "http://github.com/falcony-io/sqlalchemy-searchable/issues"
[tool.hatch.version]
path = "sqlalchemy_searchable/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/CHANGES.rst",
"/docs",
"/sqlalchemy_searchable",
"/tests",
]
exclude = [
"/docs/_build",
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.ruff.lint.isort]
known-first-party = ["sqlalchemy_searchable", "tests"]
order-by-type = false
[tool.mypy]
python_version = "3.10"
strict = true
packages = ["sqlalchemy_searchable", "tests"]
[[tool.mypy.overrides]]
module = [
"__pypy__",
"psycopg2cffi",
"sqlalchemy_utils",
]
ignore_missing_imports = true