-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (57 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (57 loc) · 1.59 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
[build-system]
requires = [
"setuptools>=61.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "django-admin-lightweight-date-hierarchy"
version = "1.3.0"
description = "Use Django Admin date hierarchy queries freely!"
readme = "README.rst"
requires-python = ">=3.7"
authors = [
{ name = "Haki Benita", email = "hakibenita@gmail.com" },
]
license = {text = "MIT, Django"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"Django>=3.2.0",
]
[project.urls]
Repository = "https://github.com/hakib/django-admin-lightweight-date-hierarchy"
[tool.setuptools]
packages = [
"django_admin_lightweight_date_hierarchy",
"django_admin_lightweight_date_hierarchy.templatetags",
]
[tool.setuptools.package-data]
"django_admin_lightweight_date_hierarchy" = ["py.typed"]
[tool.mypy]
strict = true
disallow_subclassing_any = false
python_version = "3.7"
files = [
"django_admin_lightweight_date_hierarchy/**/*.py",
"example/**/*.py",
"tests/**/*.py",
]
[[tool.mypy.overrides]]
module = [
"django.*",
]
ignore_missing_imports = true