-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
47 lines (41 loc) · 1.21 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
[tool.poetry]
name = "judoscale"
version = "1.7.5"
description = "Official Python adapter for Judoscale — the advanced autoscaler for Heroku"
authors = [
"Adam McCrea <[email protected]>",
"Mara <[email protected]>",
"Karl Sutt <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/judoscale/judoscale-python"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [{ include = "judoscale" }]
[tool.poetry.dependencies]
python = "^3.8"
requests = "<3.0.0"
django = { version = ">=2.1.0,<6.0.0", optional = true }
flask = { version = ">=1.1.0,<4.0.0", optional = true }
celery = { version = ">=4.4.0,<6.0.0", extras = ["redis"], optional = true }
rq = { version = ">=1.0.0,<2.0.0", optional = true }
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
isort = "^5.11.2"
flake8 = { version = "^6.0.0", python = ">=3.8.1,<4.0.0" }
pytest = "^8.2.2"
[tool.poetry.extras]
django = ["django"]
flask = ["flask"]
asgi = []
celery-redis = ["celery"]
rq = ["rq"]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"