-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
85 lines (75 loc) · 1.88 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[distutils]
index-servers = ["pypi"]
[pypi]
repository = "https://upload.pypi.org/legacy/"
username = "terminalkitten"
[project]
name = "django-insights"
authors = [{ name = "DK", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Matplotlib",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version", "description"]
dependencies = [
"django",
"matplotlib",
"tqdm",
"weasyprint>=53",
"django-weasyprint>=2.3",
]
[project.optional-dependencies]
dev = [
"black",
"ipython",
"flit",
"flake8",
"pytest",
"pytest-django",
"mypy",
"isort",
"wheel",
"faker",
]
doc = ["pdoc"]
[project.scripts]
insights = "django_insights.cli:cli"
[project.urls]
Home = "https://github.com/terminalkitten/django-insights"
[tool.django-stubs]
django_settings_module = "project.settings"
[tool.black]
line-length = 88
skip-string-normalization = true
target-version = ['py39', 'py310', 'py311']
[tool.isort]
profile = "black"
line_length = 88
[tool.pytest.ini_options]
pythonpath = ["."]
filterwarnings = ["error", "ignore::UserWarning"]
addopts = """\
--strict-config
--strict-markers
--ds=project.settings.test
"""
django_find_project = false