-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.35 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
[tool.poetry]
name = "condo_me"
version = "0.1.0"
description = "CondoMe app facilitates organized, respectful use of common areas in condominiums. Admin-defined rules allow residents to schedule, reschedule, and cancel slots, ensuring transparency and fostering collective well-being."
authors = ["Rodrigo Farah <digofarah@gmail.com>"]
packages = [
{ include = "src", from = "."}
]
[tool.poetry.dependencies]
python = "^3.10"
django = "^5.0.4"
setuptools = "^70.0"
wheel = "^0.43.0"
pillow = "^10.3.0"
django-countries = "^7.6.1"
django-stubs = "^5.0.2"
debugpy = "^1.8.2"
coverage = "^7.6.0"
selenium = "^4.23.1"
psycopg2-binary = "^2.9.9"
brutils = "^2.2.0"
python-dotenv = "^1.0.1"
[tool.poetry.dev-dependencies]
pytest-django = "^4.8.0"
ruff = "^0.5.4"
mypy = "^1.11.0"
isort = "^5.13.2"
black = "^24.10.0"
[tool.isort]
profile = "black"
line_length = 88
[tool.black]
line-length = 88
target-version = ['py310']
[tool.ruff]
line-length = 88
select = ["E", "F", "W", "Q", "I"]
ignore = ["E203"]
mypy = true
extend-select = ["C4", "SIM", "TCH"]
target-version = "py310"
fix = true
[tool.mypy]
plugins = [
"mypy_django_plugin.main"
]
python_version = 3.10
ignore_missing_imports = true
strict = true
[mypy.plugins.django-stubs]
django_settings_module = "project.settings"
[build-system]
requires = ["poetry-core>=1.8"]
build-backend = "poetry.core.masonry.api"