|
1 | | -[tool.ruff] |
2 | | -target-version = "py310" |
| 1 | +[project] |
| 2 | +name = "pysolr" |
| 3 | +version = "3.11.0" |
| 4 | +description = "Lightweight Python client for Apache Solr" |
| 5 | +readme = "README.rst" |
| 6 | +license = { text = "BSD" } |
| 7 | +authors = [ { name = "Daniel Lindsley", email = "daniel@toastdriven.com" } ] |
| 8 | +requires-python = ">=3.10" |
| 9 | +classifiers = [ |
| 10 | + "Development Status :: 5 - Production/Stable", |
| 11 | + "Intended Audience :: Developers", |
| 12 | + "License :: OSI Approved :: BSD License", |
| 13 | + "Operating System :: OS Independent", |
| 14 | + "Programming Language :: Python", |
| 15 | + "Programming Language :: Python :: 3 :: Only", |
| 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 :: Internet :: WWW/HTTP :: Indexing/Search", |
| 22 | +] |
| 23 | + |
| 24 | +dependencies = [ "requests>=2.32.5", "setuptools" ] |
| 25 | +optional-dependencies.solrcloud = [ "kazoo>=2.5" ] |
| 26 | +urls.Homepage = "https://github.com/django-haystack/pysolr/" |
3 | 27 |
|
| 28 | +[tool.setuptools] |
| 29 | +py-modules = [ "pysolr" ] |
| 30 | +include-package-data = false |
| 31 | + |
| 32 | +[tool.ruff] |
4 | 33 | lint.select = [ |
5 | 34 | "A", # flake8-builtins |
6 | 35 | "AIR", # Airflow |
|
0 commit comments