-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
57 lines (50 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
[project]
name = "django-ctct"
version = "0.0.1.dev6"
description = "A Django interface for the Constant Contact API"
authors = [
{name = "Geoffrey Eisenbarth",email = "geoffrey.eisenbarth@gmail.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"django (>=4.2)",
"requests (>=2.32.3,<3.0.0)",
"ratelimit (>=2.2.1,<3.0.0)",
"tqdm (>=4.67.1,<5.0.0)",
"pyjwt[crypto] (>=2.10.1,<3.0.0)",
"mypy (>=1.19.0,<2.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
pytest = "^8.3.4"
pytest-django = "^4.10.0"
parameterized = "^0.9.0"
coverage = "^7.6.12"
factory-boy = "^3.3.3"
requests-mock = "^1.12.1"
flake8 = "^7.1.2"
codecov = "^2.1.13"
mypy = "^1.15.0"
django-stubs = {extras = ["compatible-mypy"], version = "^5.1.3"}
types-requests = "^2.32.0.20250306"
django-stubs-ext = "^5.2.0"
pre-commit = "^4.2.0"
typing-extensions = "^4.13.2"
types-ratelimit = "^2.2.0.20250501"
types-factory-boy = "^0.4.1"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "project.settings"
[tool.coverage.report]
show_missing = true
[tool.mypy]
python_version = "3.10"
plugins = ["mypy_django_plugin.main"]
ignore_missing_imports = true
exclude = ["vendor.py", "factories.py", "tests/project/manage.py", "tests/project/project"]
[tool.django-stubs]
django_settings_module = "tests.project.project.settings"