-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 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
48
49
50
51
52
53
54
[tool.poetry]
name = "awards"
version = "0.1.0"
description = "An application to manage financial aid and scholarship applications and awards."
authors = ["Andy Dirnberger <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/PyGotham/awards"
[tool.poetry.dependencies]
Django = "^4.2"
psycopg2 = "^2.9.10"
python = "^3.11"
python-decouple = "^3.8"
[tool.poetry.dev-dependencies]
black = "^24.10"
bpython = "^0.24"
django-debug-toolbar = "^4.4.6"
django-stubs = "^4.2.4"
flake8 = "^7.1.1"
flake8-bugbear = "^24.10.31"
ipdb = "^0.13.13"
ipython = "^8.29.0"
isort = "^5.13.2"
mypy = "^1.13"
pep8-naming = "^0.14.1"
pre-commit = "^4.0.1"
pudb = "^2024.1"
pytest = "^8.3.3"
pytest-django = "^4.9.0"
pywatchman = "^2.0.0"
tox = "^3.28.0"
tox-poetry = "^0.5.0"
[tool.django-stubs]
django_settings_module = "awards.settings"
[tool.isort]
add_imports = "from __future__ import annotations"
atomic = true
force_sort_within_sections = true
include_trailing_comma = true
multi_line_output = 3
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.pytest.ini_options]
addopts = "--strict-markers"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"