-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.07 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
[tool.poetry]
name = "rag"
version = "0.1.0"
authors = ["Mark Raleson <markraleson@outlook.com>"]
description = ""
readme = "README.md"
license = "MIT"
repository = "https://github.com/mraleson/rag.git"
packages = [
{ include="rag" }
]
[tool.poetry.dependencies]
python = "^3.8"
Django = "~4.1.3"
channels = "~3.0.2"
channels-redis = "~3.2.0"
django-extensions = "~3.0.9"
ipython = "~7.19.0"
pytest = "~6"
pytest-django = "~4.1.0"
pytest-mock = "~3.3.1"
watchdog = "~0.10.3"
celery = "~5.0.2"
redis = "~3.5.3"
daphne = "~3.0.1"
ragclip = "~0.0.4"
pylint = "~2.7.2"
python-dateutil = "~2.8.1"
[tool.poetry.dev-dependencies]
Django = "~4.1.3"
pytest = "^6.0.0"
pytest-django = "^4.1.0"
pytest-mock = "^3.3.1"
pytest-watch = {git = "https://github.com/aldencolerain/pytest-watch", rev = "fix-toml-config"}
poethepoet = "^0.10.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [ "tests" ]
[tool.poe.tasks]
test = 'poetry run pytest'
test-watch = './scripts/test_watch.py'