-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
50 lines (44 loc) · 1.32 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
49
50
[project]
name = "Flask-RQ"
version = "0.2"
description="RQ (Redis Queue) integration for Flask applications"
readme = "README.md"
license = { file = "LICENSE" }
author = [{ name = "Matthew Wright"}]
maintainers = [{name = "Pallets Ecosystem", email = "contact@palletsprojects.com"}]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Flask",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"flask>=2.3.0",
"rq>=1.16.2",
]
[project.urls]
Documentation = "https://pythonhosted.org/Flask-RQ/"
Changes = "https://github.com/pallets-eco/flask-rq/releases"
Source = "https://github.com/pallets-eco/flask-rq"
Chat = "https://discord.gg/pallets"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "flask_rq"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
]
[tool.coverage.run]
branch = true
source = ["flask_rq", "tests"]
[tool.coverage.paths]
source = ["flask_rq.py"]