-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
109 lines (100 loc) · 2.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[project]
name = "django-owm"
version = "2024.10.2"
description = "Weather from the Open Weather Map APIs"
authors = [{ name = "Jack Linke", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10,<4.0"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"django>=4.2",
"click>=8.1.7",
"requests>=2.31.0",
"celery>=5.2.0",
]
[project.urls]
Changelog = "https://github.com/OmenApps/django-owm/releases"
Homepage = "https://github.com/OmenApps/django-owm"
Repository = "https://github.com/OmenApps/django-owm"
Documentation = "https://django-owm.readthedocs.io"
Issues = "https://github.com/OmenApps/django-owm/issues"
[project.optional-dependencies]
dev = [
"Pygments>=2.18.0",
"bandit>=1.7.8",
"black>=24.4.2",
"coverage[toml]>=7.5.1",
"darglint>=1.8.1",
"flake8>=7.0.0",
"flake8-bugbear>=24.4.26",
"flake8-docstrings>=1.7.0",
"flake8-rst-docstrings>=0.3.0",
"furo>=2024.8.6",
"isort>=5.13.2",
"nox>=2024.4.15",
"nox-poetry>=1.0.3",
"poetry-plugin-export>=1.8.0",
"pep8-naming>=0.14.1",
"pre-commit>=3.7.1",
"pre-commit-hooks>=4.6.0",
"pytest>=8.2.1",
"pytest-cov>=5.0.0",
"pytest-django>=4.8.0",
"pyupgrade>=3.15.2",
"safety>=3.2.0",
"sphinx>=8.1.0",
"sphinx-autobuild>=2024.4.16",
"sphinx-click>=6.0.0",
"xdoctest[colors]>=1.1.3",
"myst-parser>=4.0.0",
"redis>=4.0.0",
]
[tool.black]
line-length = 120
target-version = ["py310", "py311", "py312"]
force-exclude = '''
(
.nox
)
'''
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["example_project", "*/example_project"]
[tool.coverage.run]
branch = true
source = ["src", "example_project"]
[tool.coverage.report]
show_missing = true
fail_under = 50
omit = [".nox/*", "example_project/*", "**/migrations/*", "**/__init__.py"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "example_project.settings"
python_files = ["*test_*.py", "*_test.py", "example_project/test_*.py"]
log_cli = true
log_cli_level = "DEBUG"
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
extend_skip = [".nox"]
[tool.pylint]
disable = "R0903,C0103,W0621"