-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
59 lines (53 loc) · 1.65 KB
/
pyproject.toml
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
[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.8"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"SQLAlchemy-Utils>=0.40.0",
"SQLAlchemy>=1.4",
]
[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