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