forked from procrastinate-org/procrastinate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (63 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "procrastinate"
version = "0.0.0"
description = "Postgres-based distributed task processing library"
authors = ["Joachim Jablon", "Eric Lemoine"]
license = "MIT License"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
]
readme = "README.rst"
keywords = ["postgres", "task-queue"]
homepage = "https://procrastinate.readthedocs.io/"
repository = "https://github.com/procrastinate-org/procrastinate/"
documentation = "https://procrastinate.readthedocs.io/"
[tool.poetry.scripts]
procrastinate = 'procrastinate.cli:main'
[tool.poetry.dependencies]
python = "^3.7"
aiopg = "*"
attrs = "*"
click = "*"
croniter = "*"
django = {version = ">=2.2", optional = true}
importlib-metadata = {version = "*", python = "<3.8"}
importlib-resources = {version = ">=1.4", python = "<3.9"}
psycopg2-binary = "*"
python-dateutil = "*"
sqlalchemy = {version = "^2.0", optional = true}
typing-extensions = {version = "*", python = "<3.8"}
[tool.poetry.extras]
django = ["django"]
sqlalchemy = ["sqlalchemy"]
[tool.poetry.dev-dependencies]
black = {version = "*", allow-prereleases = true}
dunamai = "*"
flake8 = "*"
migra = "*"
mypy = "*"
pytest-asyncio = "*"
pytest-click = "*"
pytest-cov = "*"
pytest-django = "*"
pytest-mock = "*"
Sphinx = "*"
sphinx-autodoc-typehints = "*"
sphinx-github-changelog = "*"
sphinxcontrib-programoutput = "*"
sqlalchemy = {extras = ["mypy"], version = "*"}
types-croniter = "*"
types-psycopg2 = "*"
types-python-dateutil = "*"
SQLAlchemy = {extras = ["mypy"], version = "^2.0.0"}
tomlkit = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"