This repository was archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (60 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
63 lines (60 loc) · 1.44 KB
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
[tool.poetry]
name = "fastlane"
version = "2.2.4"
description = "fastlane is a redis and docker based queueing service."
authors = ["Bernardo Heynemann <heynemann@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.6"
click = "^6.7"
redis = "^3.1.0"
derpconf = "^0.8.2"
flask = "^1.0"
flask-redis = "^0.3.0"
docker = "^3.4"
flask-mongoengine = "^0.9.5"
ujson = "^1.35"
structlog = "^18.1"
python-dateutil = "^2.7"
sentry-sdk = "=0.5.5"
raven = "^6.9"
Flask-Redis-Sentinel = "^2.0"
flask-sockets = "^0.2.1"
wsaccel = "^0.6.2"
requests = "^2.22"
pybreaker = "^0.4.5"
pyyaml = "^4.2b1"
flask-cors = "^3.0"
Redis-Sentinel-Url = "^1.0"
croniter = "^0.3.29"
Flask-BasicAuth = "^0.2.0"
gevent-websocket = {git = "https://github.com/lrezek/gevent-websocket.git", "rev" = "902d82b4de6e369e7ad2626d8853f7e1c7bc3e7c"}
validators = "^0.14.0"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
pytest-cov = "^2.5"
pytest-sugar = "^0.9.1"
pytest-watch = "^4.2"
jedi = "^0.12.1"
ipdb = "^0.11.0"
preggy = "^1.4"
mongomock = "^3.10"
black = "18.9b0"
python-language-server = "^0.21.3"
requests-mock = "^1.5"
flake8 = "^3.6"
isort = "^4.3"
pylint = "^2.2"
pylint-venv = "^1.0"
pylint-mongoengine = "^0.2.1"
pylint-plugin-utils = "^0.4.0"
Sphinx = "^1.8"
typing = "^3.6"
recommonmark = "^0.5.0"
pygments = "^2.3"
sphinx_bootstrap_theme = "^0.6.5"
mkdocs = "^1.0"
pytest-parallel = "^0.0.9"
colorama = "^0.4.1"
[tool.poetry.scripts]
fl = 'fastlane.cli:main'
fastlane = 'fastlane.cli:main'