Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ repos:
rev: v2.12.1
hooks:
- id: pyproject-fmt
args: [
"--indent", "4",
"--keep-full-version",
"--max-supported-python", "3.10",
]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.29.1
Expand Down
36 changes: 36 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[project]
name = "drf-haystack"
version = "1.9.1"
description = "Makes Haystack play nice with Django REST Framework"
readme = "README.md"
license = "MIT"
Comment thread
ulgens marked this conversation as resolved.
authors = [
{ name = "Dhaval Gojiya", email = "dhavalgojiya10@gmail.com" },
{ name = "Rolf Håvard Blindheim", email = "rhblind@gmail.com" },
{ name = "Ülgen Sarıkavak", email = "foss@ulgenwanders.net" },
]
requires-python = ">=3.8,<3.11"
Comment thread
ulgens marked this conversation as resolved.
classifiers = [
# The package is being transferred between organizations and has no working tests / CI.
# Use at your own risk.
Comment thread
ulgens marked this conversation as resolved.
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls.Documentation = "https://drf-haystack.readthedocs.io"
urls.Homepage = "https://github.com/ulgens/drf-haystack"
urls.Issues = "https://github.com/ulgens/drf-haystack/issues"
urls.Repository = "https://github.com/ulgens/drf-haystack.git"

[tool.pyproject-fmt]
indent = 4
keep_full_version = true
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def get_version(package):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8, <3.11",
Comment thread
ulgens marked this conversation as resolved.
Expand Down
Loading