forked from django-haystack/celery-haystack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.46 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "celery-haystack"
version = "1.1.0" # Replace with your actual version
description = "An app for integrating Celery with Haystack."
readme = "README.rst"
authors = [
{ name = "Jannis Leidel", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Utilities"
]
dependencies = [
"django-appconf>=0.4.1"
]
[project.urls]
Documentation = "https://github.com/LeandroJatai/celery-haystack#readme"
Issues = "https://github.com/LeandroJatai/celery-haystack/issues"
Source = "https://github.com/LeandroJatai/celery-haystack"
Homepage = "https://github.com/LeandroJatai/celery-haystack"
# For backwards_compat section
[tool.backwards_compat]
zip_safe = false
# For wheel section
[tool.wheel]
include = ["README.rst", "AUTHORS"]
packages = ["celery_haystack", "celery_haystack.tests"]
universal = 1
# For global section, note this isn't a direct mapping, but based on the available setup-tools documentation
[tool.global]
setup-hooks = ["celery_haystack.version_hook"]