forked from BetterAngelsLA/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.23 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
[tool.nx]
autoActivate = true
[tool.poetry]
name = "@monorepo/source"
version = "1.0.0"
description = ""
authors = []
license = "Proprietary"
readme = "README.md"
package-mode = false
[tool.black]
line-length = 120
exclude = '''
/(
| node_modules
| .venv/lib
)/
'''
[tool.isort]
profile = "black"
skip_glob = ["*/migrations/*"]
[tool.poetry.dependencies]
python = "3.12.2"
[tool.poetry.dependencies.betterangels-backend]
path = "apps/betterangels-backend"
develop = true
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.0"
isort = "^5.13.2"
black = "^24.4.2"
flake8-bugbear = "^24.4.26"
django-stubs-ext = "^5.0.2"
djlint = "^1.34.1"
django-stubs = { extras = ["compatible-mypy"], version = "^5.0.2" }
celery-types = "^0.22.0"
vcrpy = "^6.0.1"
djangorestframework-stubs = { extras = [
"compatible-mypy",
], version = "^3.15.0" }
ipython = "^8.26.0"
pytest-django = "^4.8.0"
boto3-stubs = { extras = ["essential"], version = "^1.34.144" }
model-bakery = "^1.18.2"
unittest-parametrize = "^1.4.0"
time-machine = "^2.14.2"
types-python-dateutil = "^2.9.0.20240316"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "betterangels_backend.settings"
[build-system]
requires = ["poetry-core==1.1.0"]
build-backend = "poetry.core.masonry.api"