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