-
Notifications
You must be signed in to change notification settings - Fork 395
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 956 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 956 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "huey"
dynamic = ["version"]
description = "a little task queue"
readme = "README.rst"
authors = [
{ name = "Charles Leifer", email = "coleifer@gmail.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.scripts]
huey_consumer = "huey.bin.huey_consumer:consumer_main"
[project.urls]
Repository = "https://github.com/coleifer/huey"
Documentation = "https://huey.readthedocs.io/"
Changelog = "https://github.com/coleifer/huey/blob/master/CHANGELOG.md"
[project.optional-dependencies]
backends = ["redis>=3.0.0"]
postgres = ["psycopg>=3.2"]
[tool.setuptools.dynamic]
version = { attr = "huey.__version__" }
[tool.setuptools.packages.find]
include = ["huey*"]